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
According to the Linux manpage signal(2) the function signal should not be used as its behaviour can vary across platforms. Currently glibc mimics the BSD behaviour which implicitly uses the flag SA_RESTART. This behaviour can be different when other libc are used. Instead of signalsigaction should be used.
The text was updated successfully, but these errors were encountered:
According to the Linux manpage signal(2) the function
signal
should not be used as its behaviour can vary across platforms. Currently glibc mimics the BSD behaviour which implicitly uses the flagSA_RESTART
. This behaviour can be different when other libc are used. Instead ofsignal
sigaction
should be used.The text was updated successfully, but these errors were encountered: