- Timestamp:
- Oct 13, 2008 12:38:07 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37761
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp
r11133 r13213 373 373 if (RT_LIKELY(sigwaitinfo(&SigSet, &SigInfo) >= 0)) 374 374 { 375 LogFlow(("rttimerThread: signo=%d pTimer=%p\n", SigInfo.si_signo, SigInfo. _sifields._timer.si_sigval.sival_ptr));375 LogFlow(("rttimerThread: signo=%d pTimer=%p\n", SigInfo.si_signo, SigInfo.si_value.sival_ptr)); 376 376 if (RT_LIKELY( SigInfo.si_signo == RT_TIMER_SIGNAL 377 377 && SigInfo.si_code == SI_TIMER)) /* The SI_TIMER check is *essential* because of the pthread_kill. */ 378 378 { 379 PRTTIMER pTimer = (PRTTIMER)SigInfo. _sifields._timer.si_sigval.sival_ptr;379 PRTTIMER pTimer = (PRTTIMER)SigInfo.si_value.sival_ptr; 380 380 AssertPtr(pTimer); 381 381 if (RT_UNLIKELY( !VALID_PTR(pTimer) … … 389 389 /* auto suspend one-shot timers. */ 390 390 if (RT_UNLIKELY(!pTimer->u64NanoInterval)) 391 ASMAtomicWriteU8(&pTimer->fSuspended, true); /** @todo Can't we do a simple assigment here? */391 ASMAtomicWriteU8(&pTimer->fSuspended, true); 392 392 } 393 393 }
Note:
See TracChangeset
for help on using the changeset viewer.