(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / hppa / bits / signum.h
blobbf46006c8d94ebab99f4537e86ed75a3ea1d866a
1 /* Signal number definitions. Linux/HPPA version.
2 Copyright (C) 1995,1996,1997,1998,1999,2003 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 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.
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.
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. */
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. */
27 #ifdef __USE_UNIX98
28 # define SIG_HOLD ((__sighandler_t) 2) /* Add signal to hold mask. */
29 #endif
32 /* Signals. */
33 #define SIGHUP 1 /* Hangup (POSIX). */
34 #define SIGINT 2 /* Interrupt (ANSI). */
35 #define SIGQUIT 3 /* Quit (POSIX). */
36 #define SIGILL 4 /* Illegal instruction (ANSI). */
37 #define SIGTRAP 5 /* Trace trap (POSIX). */
38 #define SIGABRT 6 /* Abort (ANSI). */
39 #define SIGIOT 6 /* IOT trap (4.2 BSD). */
40 #define SIGEMT 7
41 #define SIGFPE 8 /* Floating-point exception (ANSI). */
42 #define SIGKILL 9 /* Kill, unblockable (POSIX). */
43 #define SIGBUS 10 /* BUS error (4.2 BSD). */
44 #define SIGSEGV 11 /* Segmentation violation (ANSI). */
45 #define SIGSYS 12 /* Bad system call. */
46 #define SIGPIPE 13 /* Broken pipe (POSIX). */
47 #define SIGALRM 14 /* Alarm clock (POSIX). */
48 #define SIGTERM 15 /* Termination (ANSI). */
49 #define SIGUSR1 16 /* User-defined signal 1 (POSIX). */
50 #define SIGUSR2 17 /* User-defined signal 2 (POSIX). */
51 #define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */
52 #define SIGCHLD 18 /* Child status has changed (POSIX). */
53 #define SIGPWR 19 /* Power failure restart (System V). */
54 #define SIGVTALRM 20 /* Virtual alarm clock (4.2 BSD). */
55 #define SIGPROF 21 /* Profiling alarm clock (4.2 BSD). */
56 #define SIGPOLL SIGIO /* Pollable event occurred (System V). */
57 #define SIGIO 22 /* I/O now possible (4.2 BSD). */
58 #define SIGWINCH 23 /* Window size change (4.3 BSD, Sun). */
59 #define SIGSTOP 24 /* Stop, unblockable (POSIX). */
60 #define SIGTSTP 25 /* Keyboard stop (POSIX). */
61 #define SIGCONT 26 /* Continue (POSIX). */
62 #define SIGTTIN 27 /* Background read from tty (POSIX). */
63 #define SIGTTOU 28 /* Background write to tty (POSIX). */
64 #define SIGURG 29 /* Urgent condition on socket (4.2 BSD). */
65 #define SIGLOST 30 /* Operating System Has Lost (HP/UX). */
66 #define SIGUNUSED 31
67 #define SIGXCPU 33 /* CPU limit exceeded (4.2 BSD). */
68 #define SIGXFSZ 34 /* File size limit exceeded (4.2 BSD). */
69 #define SIGSTKFLT 36 /* Stack fault. */
71 #define _NSIG 65 /* Biggest signal number + 1
72 (including real-time signals). */
74 #define SIGRTMIN (__libc_current_sigrtmin ())
75 #define SIGRTMAX (__libc_current_sigrtmax ())
77 /* These are the hard limits of the kernel. These values should not be
78 used directly at user level. */
79 #define __SIGRTMIN 37
80 #define __SIGRTMAX (_NSIG - 1)
82 #endif /* <signal.h> included. */