Changeset 1810 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Mar 29, 2007 5:29:28 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp
r1809 r1810 495 495 RTThreadUserReset(pTimer->Thread); 496 496 ASMAtomicXchgU8(&pTimer->fSuspended, true); 497 int rc = VINF_SUCCESS; 497 498 if (RTThreadSelf() != pTimer->Thread) 498 499 { … … 500 501 pthread_kill((pthread_t)RTThreadGetNative(pTimer->Thread), SIGALRM); 501 502 #endif 502 intrc = RTThreadUserWait(pTimer->Thread, 45*1000);503 rc = RTThreadUserWait(pTimer->Thread, 45*1000); 503 504 AssertRC(rc); 504 505 RTThreadUserReset(pTimer->Thread);
Note:
See TracChangeset
for help on using the changeset viewer.