OSDN Git Service

First pass attempt at an alpha port
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / alpha / bits / signum.h
1 /* Signal number definitions.  Linux/Alpha version.
2    Copyright (C) 1996, 1997, 1998, 1999 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, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #ifdef  _SIGNAL_H
21
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.  */
26
27 #ifdef __USE_UNIX98
28 # define SIG_HOLD       ((__sighandler_t) 2)    /* Add signal to hold mask.  */
29 #endif
30
31 /*
32  * Linux/AXP has different signal numbers that Linux/i386: I'm trying
33  * to make it OSF/1 binary compatible, at least for normal binaries.
34  */
35 #define SIGHUP           1
36 #define SIGINT           2
37 #define SIGQUIT          3
38 #define SIGILL           4
39 #define SIGTRAP          5
40 #define SIGABRT          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 #define SIGSTOP         17
52 #define SIGTSTP         18
53 #define SIGCONT         19
54 #define SIGCHLD         20
55 #define SIGCLD          SIGCHLD
56 #define SIGTTIN         21
57 #define SIGTTOU         22
58 #define SIGIO           23
59 #define SIGXCPU         24
60 #define SIGXFSZ         25
61 #define SIGVTALRM       26
62 #define SIGPROF         27
63 #define SIGWINCH        28
64 #define SIGINFO         29
65 #define SIGUSR1         30
66 #define SIGUSR2         31
67
68 #define SIGPOLL SIGIO
69 #define SIGPWR  SIGINFO
70 #define SIGIOT  SIGABRT
71
72 #define _NSIG           64      /* Biggest signal number + 1.  */
73
74 #define SIGRTMIN        (__libc_current_sigrtmin ())
75 #define SIGRTMAX        (__libc_current_sigrtmax ())
76
77 /* These are the hard limits of the kernel.  These values should not be
78    used directly at user level.  */
79 #define __SIGRTMIN      32
80 #define __SIGRTMAX      (_NSIG - 1)
81
82 #endif  /* <signal.h> included.  */