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 /util-linux | |
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 'util-linux')
-rw-r--r-- | util-linux/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 620b14667..e24fc4024 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -456,7 +456,7 @@ static int mount_it_now(struct mntent *mp, long vfsflags, char *filteropts) | |||
456 | args[rc++] = filteropts; | 456 | args[rc++] = filteropts; |
457 | } | 457 | } |
458 | args[rc] = NULL; | 458 | args[rc] = NULL; |
459 | rc = wait4pid(spawn(args)); | 459 | rc = spawn_and_wait(args); |
460 | free(args[0]); | 460 | free(args[0]); |
461 | if (!rc) | 461 | if (!rc) |
462 | break; | 462 | break; |
@@ -1633,7 +1633,7 @@ static int singlemount(struct mntent *mp, int ignore_busy) | |||
1633 | } | 1633 | } |
1634 | args[n++] = mp->mnt_dir; | 1634 | args[n++] = mp->mnt_dir; |
1635 | args[n] = NULL; | 1635 | args[n] = NULL; |
1636 | rc = wait4pid(xspawn(args)); | 1636 | rc = spawn_and_wait(args); |
1637 | goto report_error; | 1637 | goto report_error; |
1638 | } | 1638 | } |
1639 | 1639 | ||