Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
71 7u83 1
 
2
 
3
#define	SIG_DFL		(void*)0
4
#define	SIG_IGN		(void*)1
5
#define	SIG_ERR		(void*)-1
6
 
7
#define	SIGINT		2	/* interrupt */
8
#define	SIGILL		4	/* illegal instr. (not reset when caught) */
9
#define	SIGABRT		6	/* abort() */
10
#define	SIGFPE		8	/* floating point exception */
11
#define	SIGSEGV		11	/* segmentation violation */
12
#define	SIGTERM		15	/* software termination signal from kill */
13
 
14
typedef int sig_atomic_t;
15