pause
— stop until
signal
Standard C Library (libc, -lc)
The pause
() function always returns:
- [
EINTR
]
- The call was interrupted.
A pause
() system call first appeared in
the Programmer's Workbench (PWB/UNIX) and was then ported to
Version 7 AT&T UNIX. It was reimplemeted
as a wrapper around the sigpause
() and
sigblock
() system calls in
4.2BSD, and around the
sigsuspend(2)
and
sigprocmask(2)
system calls in 4.3BSD-Reno.