File: _siglist.c

package info (click to toggle)
libc-sparc 5.3.12-3
  • links: PTS
  • area: main
  • in suites: potato, slink
  • size: 17,608 kB
  • ctags: 44,718
  • sloc: ansic: 163,548; asm: 5,080; makefile: 3,340; lex: 521; sh: 439; yacc: 401; awk: 28
file content (75 lines) | stat: -rw-r--r-- 1,865 bytes parent folder | download | duplicates (2)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <ansidecl.h>
#include <stddef.h>
#include <signal.h>


/* This is a list of all known signal numbers.  */
CONST char *CONST _sys_siglist[] =
  {
    "Unknown signal",
    "Hangup",
    "Interrupt",
    "Quit",
    "Illegal instruction",
    "Trace/breakpoint trap",
    "IOT trap/Abort",
#ifdef __sparc__
    "EMT Instruction",		/* 7 */
    "Floating point exception",	/* 8 */
    "Killed",			/* 9 */
    "Bus error",		/* 10 */
    "Segmentation fault",	/* 11 */
    "Bad argument to systen call (SunOS)", /* 12 */
    "Broken pipe",		/* 13 */
    "Alarm clock",		/* 14 */
    "Terminated",		/* 15 */
    "Urgent condition",		/* 16 */
    "Stopped (signal)",		/* SIGSTOP */
    "Stopped",			/* SIGTSTP */
    "Continued",		/* 19 */
    "Child exited",		/* 20 */
    "Stopped (tty input)",	/* 21 */
    "Stopped (tty output)",	/* 22 */
    "Possible I/O",		/* 23 */
    "CPU time limit exceeded",	/* 24 */
    "File size limit exceeded",	/* 25 */
    "Virtual time alarm",	/* 26 */
    "Profile signal",		/* 27 */
    "Window size changed",	/* 28 */
    "Resource Lost (SunOS)",	/* 29 */
    "User defined signal 1",	/* 30 */
    "User defined signal 2",	/* 31 */
#else
    "Bus error",
    "Floating point exception",
    "Killed",
    "User defined signal 1",
    "Segmentation fault",
    "User defined signal 2",
    "Broken pipe",
    "Alarm clock",
    "Terminated",
    "Stack fault",
    "Child exited",
    "Continued",
    "Stopped (signal)",
    "Stopped",
    "Stopped (tty input)",
    "Stopped (tty output)",
    "Urgent condition",
    "CPU time limit exceeded",
    "File size limit exceeded",
    "Virtual time alarm",
    "Profile signal",
    "Window size changed",
    "Possible I/O",
    "Power failure",
    "Unused signal",
    NULL
#endif
  };

#include <gnu-stabs.h>
#ifdef weak_alias
weak_alias (_sys_siglist, sys_siglist);
#endif