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 /miscutils/devfsd.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 'miscutils/devfsd.c')
-rw-r--r-- | miscutils/devfsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c index 62f5de8b6..4ccb76d95 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c | |||
@@ -751,7 +751,7 @@ static void action_modload(const struct devfsd_notify_struct *info, | |||
751 | argv[4] = concat_path_file("/dev", info->devname); /* device */ | 751 | argv[4] = concat_path_file("/dev", info->devname); /* device */ |
752 | argv[5] = NULL; | 752 | argv[5] = NULL; |
753 | 753 | ||
754 | wait4pid(xspawn(argv)); | 754 | spawn_and_wait(argv); |
755 | free(argv[4]); | 755 | free(argv[4]); |
756 | } /* End Function action_modload */ | 756 | } /* End Function action_modload */ |
757 | 757 | ||
@@ -783,7 +783,7 @@ static void action_execute(const struct devfsd_notify_struct *info, | |||
783 | argv[count] = largv[count]; | 783 | argv[count] = largv[count]; |
784 | } | 784 | } |
785 | argv[count] = NULL; | 785 | argv[count] = NULL; |
786 | wait4pid(spawn(argv)); | 786 | spawn_and_wait(argv); |
787 | } /* End Function action_execute */ | 787 | } /* End Function action_execute */ |
788 | 788 | ||
789 | 789 | ||