chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
addrcheck: Don't spew userv error messages at SMTP clients.
[qmail]
/
sig_alarm.c
1
#include <signal.h>
2
#include "sig.h"
3
4
void sig_alarmblock() { sig_block(SIGALRM); }
5
void sig_alarmunblock() { sig_unblock(SIGALRM); }
6
void sig_alarmcatch(f) void (*f)(); { sig_catch(SIGALRM,f); }
7
void sig_alarmdefault() { sig_catch(SIGALRM,SIG_DFL); }