mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 09:32:00 +01:00
16 lines
225 B
C
16 lines
225 B
C
|
/*
|
||
|
* sig.h, SJ
|
||
|
*/
|
||
|
|
||
|
#ifndef _SIG_H
|
||
|
#define _SIG_H
|
||
|
|
||
|
void sig_block(int sig);
|
||
|
void sig_unblock(int sig);
|
||
|
void sig_catch(int sig, void (*f)());
|
||
|
void sig_uncatch(int sig);
|
||
|
void sig_pause();
|
||
|
int wait_nohang(int *wstat);
|
||
|
|
||
|
#endif
|