]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/mips/bits/signum.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / mips / bits / signum.h
1 /* Signal number definitions. Linux/MIPS version.
2 Copyright (C) 1995-2019 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 #ifndef _BITS_SIGNUM_H
20 #define _BITS_SIGNUM_H 1
21
22 #ifndef _SIGNAL_H
23 #error "Never include <bits/signum.h> directly; use <signal.h> instead."
24 #endif
25
26 #include <bits/signum-generic.h>
27
28 /* Adjustments and additions to the signal number constants for
29 Linux/MIPS. */
30
31 #define SIGEMT 7 /* Emulator trap. */
32 #define SIGPWR 19 /* Power failure imminent. */
33
34 #undef SIGUSR1
35 #define SIGUSR1 16
36 #undef SIGUSR2
37 #define SIGUSR2 17
38 #undef SIGCHLD
39 #define SIGCHLD 18
40 #undef SIGWINCH
41 #define SIGWINCH 20
42 #undef SIGURG
43 #define SIGURG 21
44 #undef SIGPOLL
45 #define SIGPOLL 22
46 #undef SIGSTOP
47 #define SIGSTOP 23
48 #undef SIGTSTP
49 #define SIGTSTP 24
50 #undef SIGCONT
51 #define SIGCONT 25
52 #undef SIGTTIN
53 #define SIGTTIN 26
54 #undef SIGTTOU
55 #define SIGTTOU 27
56 #undef SIGVTALRM
57 #define SIGVTALRM 28
58 #undef SIGPROF
59 #define SIGPROF 29
60 #undef SIGXCPU
61 #define SIGXCPU 30
62 #undef SIGXFSZ
63 #define SIGXFSZ 31
64
65 #undef __SIGRTMAX
66 #define __SIGRTMAX 127
67
68 #endif /* <signal.h> included. */