summaryrefslogtreecommitdiff
path: root/sysdeps/unix/siglist.c
blob: c904e7f38d8537ab86da9598551b83dfa4e7e010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <ansidecl.h>
#include <stddef.h>

#ifndef HAVE_GNU_LD
#define _sys_siglist    sys_siglist
#endif

/* This is a list of all known signal numbers.  */

CONST char *CONST _sys_siglist[] =
  {
    "Signal 0",
    "Hangup",
    "Interrupt",
    "Quit",
    "Illegal instruction",
    "Trace/BPT trap",
    "IOT trap",
    "EMT trap",
    "Floating point exception",
    "Killed",
    "Bus error",
    "Segmentation fault",
    "Bad system call",
    "Broken pipe",
    "Alarm clock",
    "Terminated",
    "Urgent I/O condition",
    "Stopped (signal)",
    "Stopped",
    "Continued",
    "Child exited",
    "Stopped (tty input)",
    "Stopped (tty output)",
    "I/O possible",
    "Cputime limit exceeded",
    "Filesize limit exceeded",
    "Virtual timer expired",
    "Profiling timer expired",
    "Window changed",
    "Resource lost",
    "User defined signal 1",
    "User defined signal 2",
    NULL
  };