Changeset 21302 for trunk/src/kernel32/oslibthread.cpp
- Timestamp:
- Jun 18, 2009, 11:53:26 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibthread.cpp
r9945 r21302 123 123 if(rc != NO_ERROR) { 124 124 dprintf(("ERROR: DosQueryThreadContext failed with rc %d!!", rc)); 125 if(rc == ERROR_NOT_FROZEN && ++nrtries < 5) { 125 //testestest 126 if((rc == ERROR_NOT_FROZEN || rc == ERROR_INVALID_THREADID) && ++nrtries < 5) { 126 127 DosSleep(50); 127 128 goto tryagain; 128 129 } 130 DebugInt3(); 129 131 SetLastError(error2WinError(rc, ERROR_INVALID_PARAMETER)); 130 132 return FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.