minix/minix/man/man2/sigsuspend.2
Lionel Sambuc 433d6423c3 New sources layout
Change-Id: Ic716f336b7071063997cf5b4dae6d50e0b4631e9
2014-07-31 16:00:30 +02:00

40 lines
805 B
Groff

.TH SIGSUSPEND 2
.SH NAME
sigsuspend \- suspend until signalled
.SH SYNOPSIS
.ft B
#include <signal.h>
int sigsuspend(const sigset_t *\fIset\fP)
.ft P
.SH DESCRIPTION
.B Sigsuspend()
installs the signal mask referenced by
.I set
and suspends the process until signalled. The signal is handled, the signal
mask is restored to the value it had before the
.B sigsuspend()
call and call returns.
.SH "SEE ALSO"
.BR pause (2),
.BR sigaction (2),
.BR sigpending (2),
.BR sigprocmask (2),
.BR sigset (3).
.SH DIAGNOSTICS
.B Sigsuspend()
never returns normally, so it always returns
.BR \-1 .
The error code is either
.B EINTR
indicating that a signal has arrived, or
.B EFAULT
for a bad
.I set
address.
.SH AUTHOR
Kees J. Bot (kjb@cs.vu.nl)
.\"
.\" $PchId: sigsuspend.2,v 1.2 1996/04/11 06:02:41 philip Exp $