diff options
Diffstat (limited to 'miscutils')
| -rw-r--r-- | miscutils/devfsd.c | 4 | ||||
| -rw-r--r-- | miscutils/inotifyd.c | 2 |
2 files changed, 3 insertions, 3 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 | ||
diff --git a/miscutils/inotifyd.c b/miscutils/inotifyd.c index 999b5e309..271f3ade1 100644 --- a/miscutils/inotifyd.c +++ b/miscutils/inotifyd.c | |||
| @@ -155,7 +155,7 @@ int inotifyd_main(int argc, char **argv) | |||
| 155 | args[1] = events; | 155 | args[1] = events; |
| 156 | args[2] = watches[ie->wd]; | 156 | args[2] = watches[ie->wd]; |
| 157 | args[3] = ie->len ? ie->name : NULL; | 157 | args[3] = ie->len ? ie->name : NULL; |
| 158 | wait4pid(xspawn((char **)args)); | 158 | spawn_and_wait((char **)args); |
| 159 | // we are done if all files got final x event | 159 | // we are done if all files got final x event |
| 160 | if (ie->mask & 0x8000) { | 160 | if (ie->mask & 0x8000) { |
| 161 | if (--argc <= 0) | 161 | if (--argc <= 0) |
