MentOS
0.8.0
The Mentoring Operating System
|
Holds the information on how to handle a specific signal. More...
Public Attributes | |
sighandler_t | sa_handler |
sigset_t | sa_mask |
This sigset_t variable specifies the signals to be masked when running the signal handler. | |
unsigned int | sa_flags |
This set of flags specifies how the signal must be handled;. | |
Holds the information on how to handle a specific signal.
sighandler_t sigaction::sa_handler |
This field specifies the type of action to be performed; its value can be a pointer to the signal handler, SIG_DFL (that is, the value 0) to specify that the default action is performed, or SIG_IGN (that is, the value 1) to specify that the signal is ignored.