sparc64: add basic support
[uclibc-ng.git] / libc / sysdeps / linux / sparc64 / bits / signum.h
blobb63bf39c17462f12036132bc1654cd62feb116b1
1 /* Signal number definitions. Linux/SPARC version.
2 Copyright (C) 1996, 1997, 1998, 2003 Free Software Foundation, Inc.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #ifdef _SIGNAL_H
21 * Linux/SPARC has different signal numbers that Linux/i386: I'm trying
22 * to make it OSF/1 binary compatible, at least for normal binaries.
24 #define SIGHUP 1
25 #define SIGINT 2
26 #define SIGQUIT 3
27 #define SIGILL 4
28 #define SIGTRAP 5
29 #define SIGABRT 6
30 #define SIGIOT 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
42 /* SunOS values which deviate from the Linux/i386 ones */
43 #define SIGSTOP 17
44 #define SIGTSTP 18
45 #define SIGCONT 19
46 #define SIGCHLD 20
47 #define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */
48 #define SIGTTIN 21
49 #define SIGTTOU 22
50 #define SIGIO 23
51 #define SIGPOLL SIGIO /* SysV name for SIGIO */
52 #define SIGXCPU 24
53 #define SIGXFSZ 25
54 #define SIGVTALRM 26
55 #define SIGPROF 27
56 #define SIGWINCH 28
57 #define SIGLOST 29
58 #define SIGPWR SIGLOST
59 #define SIGUSR1 30
60 #define SIGUSR2 31
62 #endif /* <signal.h> included. */