Changeset 39
- Timestamp:
- Jun 21, 2010, 9:26:31 PM (15 years ago)
- Location:
- trunk/openjdk/jdk/src/windows/hpi
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/openjdk/jdk/src/windows/hpi/include/threads_md.h ¶
r34 r39 72 72 struct sys_thread *next; /* Next thread in active thread queue */ 73 73 void *stack_ptr; /* Pointer into the stack segment */ 74 unsigned intlast_sum;74 DWORD last_sum; 75 75 PNT_TIB nt_tib; /* Pointer to NT thread-local block */ 76 76 } EMXNOP(sys_thread_t); -
TabularUnified trunk/openjdk/jdk/src/windows/hpi/src/sys_api_md.c ¶
r38 r39 50 50 #include "path_md.h" 51 51 52 static int MAX_INPUT_EVENTS = 2000; 52 #define MAX_INPUT_EVENTS 2000 53 53 54 54 int … … 80 80 if (S_ISCHR(mode) || S_ISFIFO(mode)) { 81 81 int ret; 82 long lpbytes ;82 long lpbytes = 0; 83 83 if (fd == 0) { 84 84 ret = stdinAvailable(fd, &lpbytes); -
TabularUnified trunk/openjdk/jdk/src/windows/hpi/src/threads_md.c ¶
r38 r39 830 830 { 831 831 #ifndef _M_AMD64 832 unsigned intsum = 0;833 unsigned int*p;832 DWORD sum = 0; 833 DWORD *p; 834 834 CONTEXT context; 835 835
Note:
See TracChangeset
for help on using the changeset viewer.