Go to the previous, next section.

sigpending

SYNOPSIS

int sigpending(sigset_t *buf);

PARAMETERS

buf: [out] points to a buffer where to store the signal set.

DESCRIPTION

Retreives the set of pending signals.

RETURN VALUE

On success, returns zero. On error, returns -1 and errno is set to EFAULT.

Go to the previous, next section.