diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-19 20:03:34 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-19 20:03:34 +0000 |
commit | d62f7703c40301ce8368a5b5380ac38a73c7e4b8 (patch) | |
tree | 1e46d5cf36870771a4f3cedfe84f6161c3871131 /procps | |
parent | a2b5a151efb406f9df569db2c79b090ea57f5ca2 (diff) | |
download | busybox-w32-d62f7703c40301ce8368a5b5380ac38a73c7e4b8.tar.gz busybox-w32-d62f7703c40301ce8368a5b5380ac38a73c7e4b8.tar.bz2 busybox-w32-d62f7703c40301ce8368a5b5380ac38a73c7e4b8.zip |
Added sfdisk. Ststic-ified a bunch of stuff.
git-svn-id: svn://busybox.net/trunk/busybox@38 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'procps')
-rw-r--r-- | procps/kill.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/procps/kill.c b/procps/kill.c index 00f10f91f..e89f913d0 100644 --- a/procps/kill.c +++ b/procps/kill.c | |||
@@ -21,20 +21,20 @@ const struct signal_name signames[] = { | |||
21 | #ifndef __alpha__ | 21 | #ifndef __alpha__ |
22 | {"IOT", SIGIOT}, | 22 | {"IOT", SIGIOT}, |
23 | #endif | 23 | #endif |
24 | #if defined(sparc) || defined(__alpha__) | 24 | #if defined(__sparc__) || defined(__alpha__) |
25 | {"EMT", SIGEMT}, | 25 | {"EMT", SIGEMT}, |
26 | #else | 26 | #else |
27 | {"BUS", SIGBUS}, | 27 | {"BUS", SIGBUS}, |
28 | #endif | 28 | #endif |
29 | {"FPE", SIGFPE}, | 29 | {"FPE", SIGFPE}, |
30 | {"KILL", SIGKILL}, | 30 | {"KILL", SIGKILL}, |
31 | #if defined(sparc) || defined(__alpha__) | 31 | #if defined(__sparc__) || defined(__alpha__) |
32 | {"BUS", SIGBUS}, | 32 | {"BUS", SIGBUS}, |
33 | #else | 33 | #else |
34 | {"USR1", SIGUSR1}, | 34 | {"USR1", SIGUSR1}, |
35 | #endif | 35 | #endif |
36 | {"SEGV", SIGSEGV}, | 36 | {"SEGV", SIGSEGV}, |
37 | #if defined(sparc) || defined(__alpha__) | 37 | #if defined(__sparc__) || defined(__alpha__) |
38 | {"SYS", SIGSYS}, | 38 | {"SYS", SIGSYS}, |
39 | #else | 39 | #else |
40 | {"USR2", SIGUSR2}, | 40 | {"USR2", SIGUSR2}, |
@@ -42,7 +42,7 @@ const struct signal_name signames[] = { | |||
42 | {"PIPE", SIGPIPE}, | 42 | {"PIPE", SIGPIPE}, |
43 | {"ALRM", SIGALRM}, | 43 | {"ALRM", SIGALRM}, |
44 | {"TERM", SIGTERM}, | 44 | {"TERM", SIGTERM}, |
45 | #if defined(sparc) || defined(__alpha__) | 45 | #if defined(__sparc__) || defined(__alpha__) |
46 | {"URG", SIGURG}, | 46 | {"URG", SIGURG}, |
47 | {"STOP", SIGSTOP}, | 47 | {"STOP", SIGSTOP}, |
48 | {"TSTP", SIGTSTP}, | 48 | {"TSTP", SIGTSTP}, |