VirtualBox

Changeset 86727 in vbox for trunk/src/VBox/Runtime/r3


Ignore:
Timestamp:
Oct 28, 2020 10:14:40 AM (4 years ago)
Author:
vboxsync
Message:

IPRT/thread-posix.cpp: siginterrupt is deprecated, replace with sigaction. [build fix]

File:
1 edited

Legend:

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

    r86725 r86727  
    268268
    269269        int rc = sigaction(g_iSigPokeThread, &SigAct, &SigActOld);
    270         AssertMsg(rc == 0, ("rc=%Rrc errno=%d\n", RTErrConvertFromErrno(errno), errno));
     270        AssertMsg(rc == 0, ("rc=%Rrc errno=%d\n", RTErrConvertFromErrno(errno), errno)); RT_NOREF(rc);
    271271        AssertMsg(rc || SigActOld.sa_handler == rtThreadPosixPokeSignal, ("%p\n", SigActOld.sa_handler));
    272272# else
Note: See TracChangeset for help on using the changeset viewer.

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