2.9
[glibc/nacl-glibc.git] / sysdeps / unix / bsd / bits / signum.h
blobce7d4682d357f43e02176bb477ed2976b2326471
1 /* Signal number definitions. BSD version.
2 Copyright (C) 1991, 1992, 1993, 1996, 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
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. */
20 #ifdef _SIGNAL_H
22 /* This file defines the fake signal functions and signal
23 number constants for 4.2 or 4.3 BSD-derived Unix system. */
25 /* Fake signal functions. */
26 #define SIG_ERR ((__sighandler_t) -1) /* Error return. */
27 #define SIG_DFL ((__sighandler_t) 0) /* Default action. */
28 #define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */
30 #ifdef __USE_UNIX98
31 # define SIG_HOLD ((__sighandler_t) 2) /* Add signal to hold mask. */
32 #endif
35 /* Signals. */
36 #define SIGHUP 1 /* Hangup (POSIX). */
37 #define SIGINT 2 /* Interrupt (ANSI). */
38 #define SIGQUIT 3 /* Quit (POSIX). */
39 #define SIGILL 4 /* Illegal instruction (ANSI). */
40 #define SIGABRT SIGIOT /* Abort (ANSI). */
41 #define SIGTRAP 5 /* Trace trap (POSIX). */
42 #define SIGIOT 6 /* IOT trap (4.2 BSD). */
43 #define SIGEMT 7 /* EMT trap (4.2 BSD). */
44 #define SIGFPE 8 /* Floating-point exception (ANSI). */
45 #define SIGKILL 9 /* Kill, unblockable (POSIX). */
46 #define SIGBUS 10 /* Bus error (4.2 BSD). */
47 #define SIGSEGV 11 /* Segmentation violation (ANSI). */
48 #define SIGSYS 12 /* Bad argument to system call (4.2 BSD). */
49 #define SIGPIPE 13 /* Broken pipe (POSIX). */
50 #define SIGALRM 14 /* Alarm clock (POSIX). */
51 #define SIGTERM 15 /* Termination (ANSI). */
52 #define SIGURG 16 /* Urgent condition on socket (4.2 BSD). */
53 #define SIGSTOP 17 /* Stop, unblockable (POSIX). */
54 #define SIGTSTP 18 /* Keyboard stop (POSIX). */
55 #define SIGCONT 19 /* Continue (POSIX). */
56 #define SIGCHLD 20 /* Child status has changed (POSIX). */
57 #define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */
58 #define SIGTTIN 21 /* Background read from tty (POSIX). */
59 #define SIGTTOU 22 /* Background write to tty (POSIX). */
60 #define SIGIO 23 /* I/O now possible (4.2 BSD). */
61 #define SIGPOLL SIGIO /* Same as SIGIO? (SVID). */
62 #define SIGXCPU 24 /* CPU limit exceeded (4.2 BSD). */
63 #define SIGXFSZ 25 /* File size limit exceeded (4.2 BSD). */
64 #define SIGVTALRM 26 /* Virtual alarm clock (4.2 BSD). */
65 #define SIGPROF 27 /* Profiling alarm clock (4.2 BSD). */
66 #define SIGWINCH 28 /* Window size change (4.3 BSD, Sun). */
67 #define SIGINFO 29 /* Information request (4.4 BSD). */
68 #define SIGUSR1 30 /* User-defined signal 1 (POSIX). */
69 #define SIGUSR2 31 /* User-defined signal 2 (POSIX). */
70 #define SIGLOST 32 /* Resource lost (Sun); server died (GNU). */
72 #endif /* <signal.h> included. */
74 #define _NSIG 33 /* Biggest signal number + 1. */