next up previous contents
Next: sigprocmask: change the signal Up: MOSS system calls Previous: sigaction: change the action

sigpending: find the set of currently pending signals

SYNOPSIS

int sigpending(sigset_t *set);

DESCRIPTION

This system call implements the POSIX sigpending function, which returns the set of signals currently pending.

PARAMETERS

set
A pointer to the sigset_t in which to store the set of pending signals.

RETURN VALUE

Returns 0 if successful, or -1 on error, in which case errno indicates the error.



Bryan Ford