Contains information about a signal action. This is only available for NLMs that are using POSIX semantics.
#include <signal.h>
struct sigaction
{
void (*sa_handler)( int );
sigset_t sa_mask;
int sa_flags;
};
Points to the function to call
Specifies a mask of signals which should be blocked during execution of the signal handler.
Specifies a set of flags which modify the behavior of the signal handling process. It is formed by the bitwise OR of zero or more of the following: