Update.
[glibc.git] / sysdeps / unix / siglist.c
blob4e69530715258a96a76afb7631d4a4d045640a8a
1 /* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 #include <stddef.h>
21 #ifndef HAVE_GNU_LD
22 #define _sys_siglist sys_siglist
23 #endif
25 /* This is a list of all known signal numbers. */
27 const char *const _sys_siglist[] =
29 N_("Signal 0"),
30 N_("Hangup"),
31 N_("Interrupt"),
32 N_("Quit"),
33 N_("Illegal instruction"),
34 N_("Trace/BPT trap"),
35 N_("IOT trap"),
36 N_("EMT trap"),
37 N_("Floating point exception"),
38 N_("Killed"),
39 N_("Bus error"),
40 N_("Segmentation fault"),
41 N_("Bad system call"),
42 N_("Broken pipe"),
43 N_("Alarm clock"),
44 N_("Terminated"),
45 N_("Urgent I/O condition"),
46 N_("Stopped (signal)"),
47 N_("Stopped"),
48 N_("Continued"),
49 N_("Child exited"),
50 N_("Stopped (tty input)"),
51 N_("Stopped (tty output)"),
52 N_("I/O possible"),
53 N_("Cputime limit exceeded"),
54 N_("Filesize limit exceeded"),
55 N_("Virtual timer expired"),
56 N_("Profiling timer expired"),
57 N_("Window changed"),
58 N_("Resource lost"),
59 N_("User defined signal 1"),
60 N_("User defined signal 2"),
61 NULL