Rev 72 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#define SIG_DFL (void*)0
#define SIG_IGN (void*)1
#define SIG_ERR (void*)-1
#define SIGINT 2 /* interrupt */
#define SIGILL 4 /* illegal instr. (not reset when caught) */
#define SIGABRT 6 /* abort() */
#define SIGFPE 8 /* floating point exception */
#define SIGSEGV 11 /* segmentation violation */
#define SIGTERM 15 /* software termination signal from kill */
typedef int sig_atomic_t;