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 /debianutils | |
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 'debianutils')
-rw-r--r-- | debianutils/run_parts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index 2854a539c..37e8487e1 100644 --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c | |||
@@ -159,14 +159,14 @@ int run_parts_main(int argc UNUSED_PARAM, char **argv) | |||
159 | continue; | 159 | continue; |
160 | } | 160 | } |
161 | cmd[0] = name; | 161 | cmd[0] = name; |
162 | ret = wait4pid(spawn(cmd)); | 162 | ret = spawn_and_wait(cmd); |
163 | if (ret == 0) | 163 | if (ret == 0) |
164 | continue; | 164 | continue; |
165 | n = 1; | 165 | n = 1; |
166 | if (ret < 0) | 166 | if (ret < 0) |
167 | bb_perror_msg("can't execute '%s'", name); | 167 | bb_perror_msg("can't execute '%s'", name); |
168 | else /* ret > 0 */ | 168 | else /* ret > 0 */ |
169 | bb_error_msg("%s exited with code %d", name, ret); | 169 | bb_error_msg("%s exited with code %d", name, ret & 0xff); |
170 | } | 170 | } |
171 | 171 | ||
172 | return n; | 172 | return n; |