VirtualBox

Changeset 13213 in vbox for trunk


Ignore:
Timestamp:
Oct 13, 2008 12:38:07 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37761
Message:

iprt/timer-posix.cpp: Don't access private siginfo members, that's not portable. (We don't set fSuspended non-atomically because of access consistency.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp

    r11133 r13213  
    373373        if (RT_LIKELY(sigwaitinfo(&SigSet, &SigInfo) >= 0))
    374374        {
    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));
    376376            if (RT_LIKELY(   SigInfo.si_signo == RT_TIMER_SIGNAL
    377377                          && SigInfo.si_code == SI_TIMER)) /* The SI_TIMER check is *essential* because of the pthread_kill. */
    378378            {
    379                 PRTTIMER pTimer = (PRTTIMER)SigInfo._sifields._timer.si_sigval.sival_ptr;
     379                PRTTIMER pTimer = (PRTTIMER)SigInfo.si_value.sival_ptr;
    380380                AssertPtr(pTimer);
    381381                if (RT_UNLIKELY(    !VALID_PTR(pTimer)
     
    389389                /* auto suspend one-shot timers. */
    390390                if (RT_UNLIKELY(!pTimer->u64NanoInterval))
    391                     ASMAtomicWriteU8(&pTimer->fSuspended, true); /** @todo Can't we do a simple assigment here? */
     391                    ASMAtomicWriteU8(&pTimer->fSuspended, true);
    392392            }
    393393        }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette