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

34 lines
614 B
Groff

.TH SIGPENDING 2
.SH NAME
sigpending \- report pending signals
.SH SYNOPSIS
.ft B
#include <signal.h>
int sigpending(sigset_t *\fIset\fP)
.ft P
.SH DESCRIPTION
.B Sigpending()
returns the set of signals that are waiting to be delivered. They are
currently blocked by the signal mask.
.SH "SEE ALSO"
.BR sigaction (2),
.BR sigprocmask (2),
.BR sigsuspend (2),
.BR sigset (3).
.SH DIAGNOSTICS
Returns
.B 0
on success and
.B \-1
on error. The only possible error code is
.B EFAULT
for a bad
.I set
address.
.SH AUTHOR
Kees J. Bot (kjb@cs.vu.nl)
.\"
.\" $PchId: sigpending.2,v 1.2 1996/04/11 06:01:22 philip Exp $