summaryrefslogtreecommitdiff
path: root/src/setjmp/sigjmp_buf.c
blob: 945448cd503785aa7751ee65d31798d4ffa1e776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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.
***/

/*
TYPEDEF(an array type)
POSIX(1)
*/