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


sigemptyset

Syntax

#include <signal.h>

int sigemptyset (sigset_t *set)

Description

This function initializes the set of signals pointed to by set to exclude all signals known to the DJGPP runtime system. Such an empty set, if passed to sigprocmask (see section sigprocmask), will cause all signals to be passed immediately to their handlers.

Return Value

0 upon success, -1 if set is a NULL pointer.

Portability

not ANSI, POSIX


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