fehQlibs 26
Qlibs
|
signal handling functions More...
Go to the source code of this file.
Functions | |
void | sig_alarmblock () |
void | sig_alarmunblock () |
void | sig_alarmcatch (void(*f)(int)) |
void | sig_alarmdefault () |
void | sig_block (int sig) |
void | sig_unblock (int sig) |
void | sig_blocknone () |
void | sig_catch (int sig, void(*f)(int)) |
void | sig_pause () |
void | sig_pipeignore () |
void | sig_pipedefault () |
void | sig_childblock () |
void | sig_childunblock () |
void | sig_childcatch (void(*f)(int)) |
void | sig_childdefault () |
void | sig_hangupblock () |
void | sig_hangupunblock () |
void | sig_hangupcatch (void(*f)(int)) |
void | sig_hangupdefault () |
void | sig_termblock () |
void | sig_termunblock () |
void | sig_termcatch (void(*f)(int)) |
void | sig_termdefault () |
void | sig_bugcatch (void(*f)(int)) |
void | sig_miscignore () |
Variables | |
int | sig_alarm = SIGALRM |
int | sig_pipe = SIGPIPE |
int | sig_child = SIGCHLD |
int | sig_hangup = SIGHUP |
int | sig_term = SIGTERM |
void(* | sig_defaulthandler )(int) = SIG_DFL |
void(* | sig_ignorehandler )() = SIG_IGN |
int | sig_cont = SIGCONT |
signal handling functions
Definition in file sig.c.
void sig_alarmblock | ( | void | ) |
void sig_alarmcatch | ( | void(*)(int) | f | ) |
void sig_alarmdefault | ( | void | ) |
void sig_alarmunblock | ( | void | ) |
void sig_block | ( | int | sig | ) |
void sig_bugcatch | ( | void(*)(int) | f | ) |
void sig_catch | ( | int | sig, |
void(*)(int) | f | ||
) |
void sig_childblock | ( | void | ) |
void sig_childcatch | ( | void(*)(int) | f | ) |
void sig_childdefault | ( | void | ) |
void sig_childunblock | ( | void | ) |
void sig_hangupblock | ( | void | ) |
void sig_hangupcatch | ( | void(*)(int) | f | ) |
void sig_hangupdefault | ( | void | ) |
void sig_hangupunblock | ( | void | ) |
void sig_miscignore | ( | void | ) |
void sig_pipedefault | ( | void | ) |
void sig_pipeignore | ( | void | ) |
void sig_termblock | ( | void | ) |
void sig_termcatch | ( | void(*)(int) | f | ) |
void sig_termdefault | ( | void | ) |
void sig_termunblock | ( | void | ) |
void sig_unblock | ( | int | sig | ) |