chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'mdw/relayhosts'
[qmail]
/
sig_child.c
1
#include <signal.h>
2
#include "sig.h"
3
4
void sig_childblock() { sig_block(SIGCHLD); }
5
void sig_childunblock() { sig_unblock(SIGCHLD); }
6
void sig_childcatch(f) void (*f)(); { sig_catch(SIGCHLD,f); }
7
void sig_childdefault() { sig_catch(SIGCHLD,SIG_DFL); }