diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-18 22:44:00 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-18 22:44:00 +0100 |
commit | 8531d76a15890c2c535908ce888b2e2aed35b172 (patch) | |
tree | 2035bb9eb9feec14d80487a313729192bb0e875c /libbb/vfork_daemon_rexec.c | |
parent | c5c006c10c060e7f1a97250d039051b93ed390b2 (diff) | |
download | busybox-w32-8531d76a15890c2c535908ce888b2e2aed35b172.tar.gz busybox-w32-8531d76a15890c2c535908ce888b2e2aed35b172.tar.bz2 busybox-w32-8531d76a15890c2c535908ce888b2e2aed35b172.zip |
*: code shrink and better "died from signal" reporting from wait4pid
function old new delta
parse 964 967 +3
udhcp_run_script 670 665 -5
singlemount 911 906 -5
mount_it_now 360 355 -5
inotifyd_main 521 516 -5
xspawn 21 - -21
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 1/4 up/down: 3/-41) Total: -38 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/vfork_daemon_rexec.c')
-rw-r--r-- | libbb/vfork_daemon_rexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/vfork_daemon_rexec.c b/libbb/vfork_daemon_rexec.c index 9be901722..07024f5f0 100644 --- a/libbb/vfork_daemon_rexec.c +++ b/libbb/vfork_daemon_rexec.c | |||
@@ -97,7 +97,7 @@ int FAST_FUNC wait4pid(pid_t pid) | |||
97 | if (WIFEXITED(status)) | 97 | if (WIFEXITED(status)) |
98 | return WEXITSTATUS(status); | 98 | return WEXITSTATUS(status); |
99 | if (WIFSIGNALED(status)) | 99 | if (WIFSIGNALED(status)) |
100 | return WTERMSIG(status) + 1000; | 100 | return WTERMSIG(status) + 0x180; |
101 | return 0; | 101 | return 0; |
102 | } | 102 | } |
103 | 103 | ||