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


sigaddset

Syntax

#include <signal.h>

int sigaddset (sigset_t *set, int signo)

Description

This function adds the individual signal specified by signo 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.