| You are here: | About>Computing & Technology>Focus on Linux |
![]() | Focus on Linux |
NAMEsigemptyset, 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); DESCRIPTIONThe 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 VALUEsigemptyset, sigfillset, 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
CONFORMING TOPOSIXSEE ALSOsigaction(2), sigpending(2), sigprocmask(2), sigsuspend(2)
Important: Use the man command (% man) to see how a command is used on your particular computer. |
|
All Topics | Email Article | | | ![]() |
| Advertising Info | News & Events | Work at About | SiteMap | Reprints | Help | Our Story | Be a Guide |
| User Agreement | Ethics Policy | Patent Info. | Privacy Policy | ©2008 About, Inc., A part of The New York Times Company. All rights reserved. |


