United States-English |
|
|
HP-UX Reference > Ssignal(2)HP-UX 11i Version 3: February 2007 |
|
NAMEsignal, sigset, sighold, sigrelse, sigignore, sigpause — signal management SYNOPSIS#include <signal.h> void (*signal(int sig, void (*func)(int)))(int); int sighold(int sig); int sigignore(int sig); int sigpause(int sig); int sigrelse(int sig); void (*sigset(int sig, void (*disp)(int)))(int); DESCRIPTIONThe functions described in this reference page provide simplified signal management:
The system defines a set of signals that can be delivered to a process. The set of signals is defined in signal(5) , along with the meaning and side effects of each signal. An alternate mechanism for handling these signals is defined here. The facilities described here should not be used in conjunction with the other facilities described under signal(2), sigblock(2), sigsetmask(2), sigpause(3C), and sigspace(2). The signal() function chooses one of three ways in which receipt of the signal number sig is to be subsequently handled. If the value of func is SIG_DFL, default handling for that signal will occur. If the value of func is SIG_IGN, the signal will be ignored. Otherwise, func must point to a function to be called when that signal occurs. Such a function is called a signal handler. When a signal occurs, if func points to a function, first the equivalent of: signal(sig, SIG_DFL); is executed or an implementation-dependent blocking of the signal is performed. (If the value of sig is SIGILL, whether the reset to SIG_DFL occurs is implementation-dependent.) Next the equivalent of: (*func)(sig); is executed. The func function may terminate by executing a return statement or by calling abort(), exit(), or longjmp(). If func() executes a return statement and the value of sig was SIGFPE or any other implementation-dependent value corresponding to a computational exception, the behaviour is undefined. Otherwise, the program will resume execution at the point it was interrupted. If the signal occurs other than as the result of calling abort(), kill(), raise(), pthread_kill(), or sigqueue(), the behaviour is undefined if the signal handler calls any function in the standard library other than one of the functions listed on the thread_safety(5) page or refers to any object with static storage duration other than by assigning a value to a static storage duration variable of type volatile sig_atomic_t. Furthermore, if such a call fails, the value of errno is indeterminate. At program startup, the equivalent of: signal(sig, SIG_IGN); is executed for some signals, and the equivalent of: signal(sig, SIG_DFL); is executed for all other signals (see exec). Acceptable values for sig are described in signal(5). Acceptable values for func are:
The sigset() function is used to modify signal dispositions. The sig argument specifies the signal, which may be any signal except SIGKILL and SIGSTOP. The disp argument specifies the signal's disposition, which may be SIG_DFL, SIG_IGN or the address of a signal handler. If disp is the address of a signal handler, the system will add sig to the calling process' signal mask before executing the signal handler. When the signal handler returns, the system will restore the calling process' signal mask to its state prior to the delivery of the signal. If disp is equal to SIG_HOLD, sig will be added to the calling process' signal mask and sig's disposition will remain unchanged. If disp is not equal to SIG_HOLD, sig will be removed from the calling process' signal mask. If disp is not SIG_DFL, SIG_IGN, or SIG_HOLD, it must be a pointer to a function, the signal-catching handler, that is called when signal sig occurs. Before calling the signal-catching handler, the system signal action of sig is set to SIG_HOLD. Any pending signal of this type is released. This handler address is retained across calls to the other signal management functions listed here. Upon receipt of signal sig, the receiving process executes the signal-catching handler pointed to by disp. During a normal return from the signal-catching handler, the system signal action is restored to disp and any held signal of this type is released. If a non-local goto (longjmp(3C)) is taken, sigrelse() must be called to restore the system signal action to disp and release any held signal of this type. For either signal(2) or sigset(3C), if the action for the SIGCHLD signal is set to SIG_IGN, child processes of the calling processes will not be transformed into zombie processes when they terminate. If the calling process subsequently waits for its children, and the process has no unwaited for children that were transformed into zombie processes, it will block until all of its children terminate, and wait(), wait3(), waitid() and waitpid() will fail and set errno to ECHILD. RETURN VALUEIf the request can be honored, signal() returns the value of func() for the most recent call to signal() for the specified signal sig. Otherwise, SIG_ERR is returned and a positive value is stored in errno. Upon successful completion, sigset() returns SIG_HOLD if the signal had been blocked and the signal's previous disposition if it had not been blocked. Otherwise, SIG_ERR is returned and errno is set to indicate the error. For all other functions, upon successful completion, 0 is returned. Otherwise, -1 is returned and errno is set to indicate the error. ERRORSThe signal() function will fail if:
The signal() function may fail if:
The sigset() function will fail if:
The sighold(), sigrelse(), sigignore(), and sigpause() functions will fail if:
The sigpause() returns when the following occurs:
APPLICATION USAGEThe sigaction() function provides a more comprehensive and reliable mechanism for controlling signals; new applications should use sigaction() rather than signal(). The sighold() function, in conjunction with sigrelse() or sigpause(), may be used to establish critical regions of code that require the delivery of a signal to be temporarily deferred. The sigsuspend() function should be used in preference to sigpause() for broader portability. The sigpause() function suspends the calling process until it receives an unblocked signal. If the signal sig is held, it is released before the process pauses. sigpause() is useful for testing variables that are changed when a signal occurs. For example, sighold() should be used to block the signal first, then test the variables. If they have not changed, call sigpause() to wait for the signal. Threads ConsiderationsThe signal disposition (such as catch/ignore/default) established by signal() is shared by all threads in the process. Blocked signal masks are maintained by each thread. If signal() is used to set the signal disposition for sig to SIG_IGN or to SIG_DFL for a signal whose default action is to ignore the signal, any instances of sig pending on the process or any of the threads will be discarded. The signals are discarded regardless of whether the signal is blocked by any of the threads. For more information regarding signals and threads, refer to signal(5). EXAMPLESThe following call to signal() sets up a signal-catching function for the SIGINT signal: void myhandler(); (void) signal(SIGINT, myhandler); WARNINGSsignal() should not be used in conjunction with the facilities described under bsdproc(3C), sigaction(2), or sigset(3C). signal() does not detect an invalid value for action, and if it does not equal SIG_DFL or SIG_IGN, or point to a valid function address, subsequent receipt of the signal sig causes undefined results. |
Printable version | ||
|