The manual Page
Version française
   
index | glossary | news | downloads | links ]
  man pages
section 1
section 2
section 3
section 4
section 5
section 6
section 7
section 8
section 9
section l
section n
section o
 
news
glossary
links
downloads
 
credits
contact
 
 
search
 
last update
19/02/2003
Valid HTML 4.0!
Valid CSS!
Hit-Parade
Mesurez votre audience


  sigemptyset(3)
SIGSETOPS(3)        Linux Programmer's Manual        SIGSETOPS(3)

NAME
       sigemptyset, sigfillset, sigaddset, sigdelset, sigismember
       - POSIX signal set operations.

SYNOPSIS
       #include <signal.h>

       int sigemptyset(sigset_t *set);

       int sigfillset(sigset_t *set);

       int sigaddset(sigset_t *set, int signum);

       int sigdelset(sigset_t *set, int signum);

       int sigismember(const sigset_t *set, int signum);

DESCRIPTION
       The sigsetops(3) functions allow the manipulation of POSIX
       signal sets.

       sigemptyset  initializes  the  signal  set given by set to
       empty, with all signals excluded from the set.

       sigfillset initializes set to full, including all signals.

       sigaddset and sigdelset add and delete respectively signal
       signum from set.

       sigismember tests whether signum is a member of set.

RETURN VALUES
       sigemptyset, sigfullset, sigaddset and sigdelset return  0
       on success and -1 on error.

       sigismember  returns  1 if signum is a member of set, 0 if
       signum is not a member, and -1 on error.

ERRORS
       EINVAL sig is not a valid signal.

CONFORMING TO
       POSIX

SEE ALSO
       sigaction(2), sigpending(2), sigprocmask(2), sigsuspend(2)

Linux 1.0               24 September 1994                       1

printable format printable format



Copyright © 2000-2002 themanualpage.org - This site is submissive to the terms of the GNU GPL and FDL licences.