Go to the previous, next section.
int sigpending(sigset_t *buf);
buf: [out] points to a buffer where to store the signal set.
Retreives the set of pending signals.
On success, returns zero. On error, returns -1 and errno
is set
to EFAULT
.
Go to the previous, next section.