chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
qmail-send: Add message-id to bounce messages.
[qmail]
/
sig_term.c
1
#include <signal.h>
2
#include "sig.h"
3
4
void sig_termblock() { sig_block(SIGTERM); }
5
void sig_termunblock() { sig_unblock(SIGTERM); }
6
void sig_termcatch(f) void (*f)(); { sig_catch(SIGTERM,f); }
7
void sig_termdefault() { sig_catch(SIGTERM,SIG_DFL); }