Update.
[glibc.git] / sysdeps / unix / sysv / linux / sparc / signum.h
blob3437c1611380a04b6fe1080d7e772f9deab39f59
1 /* Signal number definitions. Linux/SPARC version.
2 Copyright (C) 1996, 1997 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 Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #ifdef _SIGNAL_H
22 /* Fake signal functions. */
23 #define SIG_ERR ((__sighandler_t) -1) /* Error return. */
24 #define SIG_DFL ((__sighandler_t) 0) /* Default action. */
25 #define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */
28 * Linux/SPARC has different signal numbers that Linux/i386: I'm trying
29 * to make it OSF/1 binary compatible, at least for normal binaries.
31 #define _NSIG 32 /* Biggest signal number + 1. */
33 #define SIGHUP 1
34 #define SIGINT 2
35 #define SIGQUIT 3
36 #define SIGILL 4
37 #define SIGTRAP 5
38 #define SIGABRT 6
39 #define SIGIOT 6
40 #define SIGEMT 7
41 #define SIGFPE 8
42 #define SIGKILL 9
43 #define SIGBUS 10
44 #define SIGSEGV 11
45 #define SIGSYS 12
46 #define SIGPIPE 13
47 #define SIGALRM 14
48 #define SIGTERM 15
49 #define SIGURG 16
51 /* SunOS values which deviate from the Linux/i386 ones */
52 #define SIGSTOP 17
53 #define SIGTSTP 18
54 #define SIGCONT 19
55 #define SIGCHLD 20
56 #define SIGTTIN 21
57 #define SIGTTOU 22
58 #define SIGIO 23
59 #define SIGPOLL SIGIO /* SysV name for SIGIO */
60 #define SIGXCPU 24
61 #define SIGXFSZ 25
62 #define SIGVTALRM 26
63 #define SIGPROF 27
64 #define SIGWINCH 28
65 #define SIGLOST 29
66 #define SIGUSR1 30
67 #define SIGUSR2 31
69 #endif /* <signal.h> included. */