mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-02-03 16:38:36 +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
|