Changeset 26257 in vbox
- Timestamp:
- Feb 5, 2010 1:28:20 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp
r14298 r26257 310 310 do 311 311 { 312 siginfo_t SigInfo = {0}; 312 siginfo_t SigInfo; 313 RT_ZERO(SigInfo); 313 314 #ifdef RT_OS_DARWIN 314 315 if (RT_LIKELY(sigwait(&SigSet, &SigInfo.si_signo) >= 0)) … … 370 371 while (g_cTimerInstances) 371 372 { 372 siginfo_t SigInfo = {0}; 373 siginfo_t SigInfo; 374 RT_ZERO(SigInfo); 373 375 if (RT_LIKELY(sigwaitinfo(&SigSet, &SigInfo) >= 0)) 374 376 {
Note:
See TracChangeset
for help on using the changeset viewer.