OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / alpha / bits / signum.h
1 /* Signal number definitions.  Linux/Alpha version.
2    Copyright (C) 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, see
17    <http://www.gnu.org/licenses/>.  */
18
19 #ifdef  _SIGNAL_H
20
21 /*
22  * Linux/AXP has different signal numbers that Linux/i386: I'm trying
23  * to make it OSF/1 binary compatible, at least for normal binaries.
24  */
25 #define SIGHUP           1
26 #define SIGINT           2
27 #define SIGQUIT          3
28 #define SIGILL           4
29 #define SIGTRAP          5
30 #define SIGABRT          6
31 #define SIGEMT           7
32 #define SIGFPE           8
33 #define SIGKILL          9
34 #define SIGBUS          10
35 #define SIGSEGV         11
36 #define SIGSYS          12
37 #define SIGPIPE         13
38 #define SIGALRM         14
39 #define SIGTERM         15
40 #define SIGURG          16
41 #define SIGSTOP         17
42 #define SIGTSTP         18
43 #define SIGCONT         19
44 #define SIGCHLD         20
45 #define SIGCLD          SIGCHLD
46 #define SIGTTIN         21
47 #define SIGTTOU         22
48 #define SIGIO           23
49 #define SIGXCPU         24
50 #define SIGXFSZ         25
51 #define SIGVTALRM       26
52 #define SIGPROF         27
53 #define SIGWINCH        28
54 #define SIGINFO         29
55 #define SIGUSR1         30
56 #define SIGUSR2         31
57
58 #define SIGPOLL SIGIO
59 #define SIGPWR  SIGINFO
60 #define SIGIOT  SIGABRT
61
62 #endif  /* <signal.h> included.  */