|
ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. This manual page is associated with the Mac OS X developer tools. The software or headers described may not be present on your Mac OS X installation until you install the developer tools package. This package is available on your Mac OS X installation DVD, and the latest versions can be downloaded from developer.apple.com. For more information about the manual page format, see the manual page for manpages(5). |
SIGPENDING(2) BSD System Calls Manual SIGPENDING(2)
NAME
sigpending -- get pending signals
SYNOPSIS
#include <signal.h>
int
sigpending(sigset_t *set);
DESCRIPTION
The sigpending function returns a mask of the signals pending for delivery to the calling process in
the location indicated by set. Signals may be pending because they are currently masked, or tran-siently transiently
siently before delivery (although the latter case is not normally detectable).
RETURN VALUES
A 0 value indicated that the call succeeded. A -1 return value indicates an error occurred and errno
is set to indicated the reason.
ERRORS
The sigpending function does not currently detect any errors.
SEE ALSO
sigaction(2), sigprocmask(2)
STANDARDS
The sigpending function is defined by IEEE Std 1003.1-1988 (``POSIX.1'').
BSD January 12, 1994 BSD
|
|