summaryrefslogtreecommitdiff
path: root/src/signal/sig_atomic_t.c
blob: c881018c1177706d2c646e0f3a6b6713058694e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)
*/