• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/sysroot/usr/include/bits/
1/* Signal number definitions.  Linux version.
2   Copyright (C) 1995,1996,1997,1998,1999,2003 Free Software Foundation, Inc.
3   This file is part of the GNU C Library.
4
5   The GNU C Library is free software; you can redistribute it and/or
6   modify it under the terms of the GNU Lesser General Public
7   License as published by the Free Software Foundation; either
8   version 2.1 of the License, or (at your option) any later version.
9
10   The GNU C Library is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   Lesser General Public License for more details.
14
15   You should have received a copy of the GNU Lesser General Public
16   License along with the GNU C Library; if not, write to the Free
17   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18   02111-1307 USA.  */
19
20#ifdef	_SIGNAL_H
21
22#define	SIGHUP		1	/* Hangup (POSIX).  */
23#define	SIGINT		2	/* Interrupt (ANSI).  */
24#define	SIGQUIT		3	/* Quit (POSIX).  */
25#define	SIGILL		4	/* Illegal instruction (ANSI).  */
26#define	SIGTRAP		5	/* Trace trap (POSIX).  */
27#define	SIGABRT		6	/* Abort (ANSI).  */
28#define	SIGIOT		6	/* IOT trap (4.2 BSD).  */
29#define	SIGBUS		7	/* BUS error (4.2 BSD).  */
30#define	SIGFPE		8	/* Floating-point exception (ANSI).  */
31#define	SIGKILL		9	/* Kill, unblockable (POSIX).  */
32#define	SIGUSR1		10	/* User-defined signal 1 (POSIX).  */
33#define	SIGSEGV		11	/* Segmentation violation (ANSI).  */
34#define	SIGUSR2		12	/* User-defined signal 2 (POSIX).  */
35#define	SIGPIPE		13	/* Broken pipe (POSIX).  */
36#define	SIGALRM		14	/* Alarm clock (POSIX).  */
37#define	SIGTERM		15	/* Termination (ANSI).  */
38#define	SIGSTKFLT	16	/* Stack fault.  */
39#define	SIGCLD		SIGCHLD	/* Same as SIGCHLD (System V).  */
40#define	SIGCHLD		17	/* Child status has changed (POSIX).  */
41#define	SIGCONT		18	/* Continue (POSIX).  */
42#define	SIGSTOP		19	/* Stop, unblockable (POSIX).  */
43#define	SIGTSTP		20	/* Keyboard stop (POSIX).  */
44#define	SIGTTIN		21	/* Background read from tty (POSIX).  */
45#define	SIGTTOU		22	/* Background write to tty (POSIX).  */
46#define	SIGURG		23	/* Urgent condition on socket (4.2 BSD).  */
47#define	SIGXCPU		24	/* CPU limit exceeded (4.2 BSD).  */
48#define	SIGXFSZ		25	/* File size limit exceeded (4.2 BSD).  */
49#define	SIGVTALRM	26	/* Virtual alarm clock (4.2 BSD).  */
50#define	SIGPROF		27	/* Profiling alarm clock (4.2 BSD).  */
51#define	SIGWINCH	28	/* Window size change (4.3 BSD, Sun).  */
52#define	SIGPOLL		SIGIO	/* Pollable event occurred (System V).  */
53#define	SIGIO		29	/* I/O now possible (4.2 BSD).  */
54#define	SIGPWR		30	/* Power failure restart (System V).  */
55#define SIGSYS		31	/* Bad system call.  */
56#define SIGUNUSED	31
57
58#endif	/* <signal.h> included.  */
59