Go to the first, previous, next, last section, table of contents.


sigdelset

Syntax

#include <signal.h>

int sigdelset (sigset_t *set, int signo)

Description

This function removess the individual signal specified by signo from the set of signals pointed to by set.

Return Value

0 upon success, -1 if set is a NULL pointer, or if signo is specifies an unknown signal.

Portability

not ANSI, POSIX


Go to the first, previous, next, last section, table of contents.