1 /* Signal number definitions. Linux/SPARC version. 2 Copyright (C) 1996, 1997, 1998, 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/SPARC 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 SIGIOT 6 32 #define SIGEMT 7 33 #define SIGFPE 8 34 #define SIGKILL 9 35 #define SIGBUS 10 36 #define SIGSEGV 11 37 #define SIGSYS 12 38 #define SIGPIPE 13 39 #define SIGALRM 14 40 #define SIGTERM 15 41 #define SIGURG 16 42 43 /* SunOS values which deviate from the Linux/i386 ones */ 44 #define SIGSTOP 17 45 #define SIGTSTP 18 46 #define SIGCONT 19 47 #define SIGCHLD 20 48 #define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */ 49 #define SIGTTIN 21 50 #define SIGTTOU 22 51 #define SIGIO 23 52 #define SIGPOLL SIGIO /* SysV name for SIGIO */ 53 #define SIGXCPU 24 54 #define SIGXFSZ 25 55 #define SIGVTALRM 26 56 #define SIGPROF 27 57 #define SIGWINCH 28 58 #define SIGLOST 29 59 #define SIGPWR SIGLOST 60 #define SIGUSR1 30 61 #define SIGUSR2 31 62 63 #endif /* <signal.h> included. */ 64