Last change
on this file was 3231, checked in by bird, 18 years ago |
eol style.
|
-
Property svn:eol-style
set to
native
|
File size:
965 bytes
|
Line | |
---|
1 | /* This file is used when cross compiling bash to run native on BeOS. */
|
---|
2 |
|
---|
3 | #ifndef __GNUC__
|
---|
4 | # error cross compiling requires gcc
|
---|
5 | #endif
|
---|
6 |
|
---|
7 | /* A translation list so we can be polite to our users.
|
---|
8 | Use gcc labelled initializers to set up the array. Note that
|
---|
9 | some entries might wind up being NULL. */
|
---|
10 |
|
---|
11 | char *signal_names[NSIG + 3] = {
|
---|
12 | [0] "EXIT",
|
---|
13 | [SIGHUP] "SIGHUP",
|
---|
14 | [SIGINT] "SIGINT",
|
---|
15 | [SIGQUIT] "SIGQUIT",
|
---|
16 | [SIGILL] "SIGILL",
|
---|
17 | [SIGCHLD] "SIGCHLD",
|
---|
18 | [SIGABRT] "SIGABRT",
|
---|
19 | [SIGPIPE] "SIGPIPE",
|
---|
20 | [SIGFPE] "SIGFPE",
|
---|
21 | [SIGKILL] "SIGKILL",
|
---|
22 | [SIGSTOP] "SIGSTOP",
|
---|
23 | [SIGSEGV] "SIGSEGV",
|
---|
24 | [SIGCONT] "SIGCONT",
|
---|
25 | [SIGTSTP] "SIGTSTP",
|
---|
26 | [SIGALRM] "SIGALRM",
|
---|
27 | [SIGTERM] "SIGTERM",
|
---|
28 | [SIGTTIN] "SIGTTIN",
|
---|
29 | [SIGTTOU] "SIGTTOU",
|
---|
30 | [SIGUSR1] "SIGUSR1",
|
---|
31 | [SIGUSR2] "SIGUSR2",
|
---|
32 | [SIGWINCH] "SIGWINCH",
|
---|
33 | [SIGKILLTHR] "SIGKILLTHR",
|
---|
34 | [NSIG] "DEBUG",
|
---|
35 | [NSIG + 1] "ERR",
|
---|
36 | [NSIG + 2] (char *)0x0,
|
---|
37 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.