summaryrefslogtreecommitdiff
path: root/src/signal/sig_atomic_t.c
blob: b3ec2a84a4e05794fd9f8a43af0a0b359d899cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <signal.h>
typedef volatile int                                               sig_atomic_t;

/** non-interruptible type **/

/***
is a type of object that can be used atomically even in the presence of interrupts.
***/

/*
TYPEDEF(integer)
*/
/*
STDC(1)
*/