16 lines
287 B
C
16 lines
287 B
C
#ifndef _YGGDRASIL_SIGNAL_H
|
|
#define _YGGDRASIL_SIGNAL_H 1
|
|
#include <stdatomic.h>
|
|
|
|
typedef _Atomic int sig_atomic_t;
|
|
|
|
#define SIG_IGN __sig_ignore
|
|
// TODO
|
|
#define SIG_ERR __sig_terminate
|
|
// TODO
|
|
#define SIG_HOLD __sig_terminate
|
|
|
|
#define SIG_DFL ((sig_handler_t) 0)
|
|
|
|
#endif
|