sigpause
(3)atomically release blocked signals and wait for interrupt
LIBRARY
DESCRIPTION
RETURN VALUE
ATTRIBUTES
VERSIONS
On Linux, this routine is a system call only on the Sparc (sparc64) architecture.
glibc uses the BSD version if the _BSD_SOURCE feature test macro is defined and none of _POSIX_SOURCE, _POSIX_C_SOURCE, _XOPEN_SOURCE, _GNU_SOURCE, or _SVID_SOURCE is defined. Otherwise, the System V version is used, and feature test macros must be defined as follows to obtain the declaration:
- •
- Since glibc 2.26: _XOPEN_SOURCE >= 500
- •
- glibc 2.25 and earlier: _XOPEN_SOURCE
Since glibc 2.19, only the System V version is exposed by <signal.h>; applications that formerly used the BSD sigpause() should be amended to use sigsuspend(2).
STANDARDS
HISTORY
POSIX.1-2001. Obsoleted in POSIX.1-2008.
The classical BSD version of this function appeared in 4.2BSD. It sets the process's signal mask to sigmask. UNIX 95 standardized the incompatible System V version of this function, which removes only the specified signal sig from the process's signal mask. The unfortunate situation with two incompatible functions with the same name was solved by the sigsuspend(2) function, that takes a sigset_t * argument (instead of an int).