-
Notifications
You must be signed in to change notification settings - Fork 770
Signals, Part 4: Sigaction
angrave edited this page Dec 2, 2014
·
14 revisions
To change the "signal disposition" of a process - i.e. what happens when a signal is delivered to your process - use sigaction
int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact);
struct sigaction {
void (*sa_handler)(int);
void (*sa_sigaction)(int, siginfo_t *, void *);
sigset_t sa_mask;
int sa_flags;
};
struct sigaction sa;
sa.sa_handler = handler;
sigemptyset(&sa.sa_mask); //Also sigfillset
sa.sa_flags = SA_RESTART; /* Restart functions if interrupted by handler */
sigaction(SIGINT, &sa, NULL)
(Under construction)
Legal and Licensing information: Unless otherwise specified, submitted content to the wiki must be original work (including text, java code, and media) and you provide this material under a Creative Commons License. If you are not the copyright holder, please give proper attribution and credit to existing content and ensure that you have license to include the materials.