]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/sparc/bits/signum.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / sparc / bits / signum.h
CommitLineData
993b3242 1/* Signal number definitions. Linux/SPARC version.
bfff8b1b 2 Copyright (C) 1996-2017 Free Software Foundation, Inc.
993b3242
UD
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
41bdb6e2
AJ
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.
993b3242
UD
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
41bdb6e2 13 Lesser General Public License for more details.
993b3242 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
993b3242
UD
18
19#ifdef _SIGNAL_H
20
21/* Fake signal functions. */
22#define SIG_ERR ((__sighandler_t) -1) /* Error return. */
23#define SIG_DFL ((__sighandler_t) 0) /* Default action. */
24#define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */
25
af69217f
UD
26#ifdef __USE_UNIX98
27# define SIG_HOLD ((__sighandler_t) 2) /* Add signal to hold mask. */
28#endif
29
993b3242
UD
30/*
31 * Linux/SPARC has different signal numbers that Linux/i386: I'm trying
32 * to make it OSF/1 binary compatible, at least for normal binaries.
33 */
993b3242
UD
34#define SIGHUP 1
35#define SIGINT 2
36#define SIGQUIT 3
37#define SIGILL 4
38#define SIGTRAP 5
39#define SIGABRT 6
40#define SIGIOT 6
41#define SIGEMT 7
42#define SIGFPE 8
43#define SIGKILL 9
44#define SIGBUS 10
45#define SIGSEGV 11
46#define SIGSYS 12
47#define SIGPIPE 13
48#define SIGALRM 14
49#define SIGTERM 15
50#define SIGURG 16
51
52/* SunOS values which deviate from the Linux/i386 ones */
53#define SIGSTOP 17
54#define SIGTSTP 18
55#define SIGCONT 19
56#define SIGCHLD 20
f347c3db 57#define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */
993b3242
UD
58#define SIGTTIN 21
59#define SIGTTOU 22
60#define SIGIO 23
61#define SIGPOLL SIGIO /* SysV name for SIGIO */
62#define SIGXCPU 24
63#define SIGXFSZ 25
64#define SIGVTALRM 26
65#define SIGPROF 27
66#define SIGWINCH 28
67#define SIGLOST 29
54f4f73e 68#define SIGPWR SIGLOST
993b3242
UD
69#define SIGUSR1 30
70#define SIGUSR2 31
71
582b54aa 72#define _NSIG 65 /* Biggest signal number + 1
9c4c0024
UD
73 (including real-time signals). */
74
75#define SIGRTMIN (__libc_current_sigrtmin ())
76#define SIGRTMAX (__libc_current_sigrtmax ())
77
78/* These are the hard limits of the kernel. These values should not be
79 used directly at user level. */
80#define __SIGRTMIN 32
81#define __SIGRTMAX (_NSIG - 1)
82
993b3242 83#endif /* <signal.h> included. */