blob: 543581179fda6c94e8517f430330bb1798919261 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <setjmp.h>
/** program environment with signal mask **/
typedef jmp_buf sigjmp_buf;
/***
is used to hold all the information needed to restore a a calling
environment, including the signal mask.
***/
/*
SIGNAL_SAFE(0)
TYPEDEF(an array type)
POSIX(1)
*/
|