You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ignores the set argument and returns as soon as any signal is pending for this thread.
According to the Linux manual (https://man7.org/linux/man-pages/man3/sigwait.3.html):
"The sigwait() function suspends execution of the calling thread
until one of the signals specified in the signal set set becomes
pending. "
it should only return if the signal matches bit number set in set.
The text was updated successfully, but these errors were encountered:
The current implementation of
sigwait()
:ignores the
set
argument and returns as soon as any signal is pending for this thread.According to the Linux manual (https://man7.org/linux/man-pages/man3/sigwait.3.html):
"The sigwait() function suspends execution of the calling thread
until one of the signals specified in the signal set set becomes
pending. "
it should only return if the signal matches bit number set in
set
.The text was updated successfully, but these errors were encountered: