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
Remove support for Unix systems without the POSIX signal APIs.
Remove configure's checks for HAVE_POSIX_SIGNALS, HAVE_SIGPROCMASK, andHAVE_SIGSETJMP. These APIs are required by the Single Unix Spec v2(POSIX 1997), which we generally consider to define our minimum requiredset of Unix APIs. Moreover, no buildfarm member has reported not havingthem since 2012 or before, which means that even if the code is still livesomewhere, it's untested --- and we've made plenty of signal-handlingchanges of late. So just take these APIs as given and save the cycles forconfigure probes for them.However, we can't remove as much C code as I'd hoped, because the Windowsport evidently still uses the non-POSIX code paths for signal masking.Since we're largely emulating these BSD-style APIs for Windows anyway, itmight be a good thing to switch over to POSIX-like notation and therebyremove a few more #ifdefs. But I'm not in a position to code or test that.In the meantime, we can at least make things a bit more transparent bytesting for WIN32 explicitly in these places.