mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 22:33:36 +08:00
using _exit in fork() (Kamo Hiroyasu)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1669 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
048f6b4df7
commit
4a38940da0
2
vl.c
2
vl.c
@ -2099,7 +2099,7 @@ static int net_tap_init(VLANState *vlan, const char *ifname1,
|
|||||||
*parg++ = ifname;
|
*parg++ = ifname;
|
||||||
*parg++ = NULL;
|
*parg++ = NULL;
|
||||||
execv(setup_script, args);
|
execv(setup_script, args);
|
||||||
exit(1);
|
_exit(1);
|
||||||
}
|
}
|
||||||
while (waitpid(pid, &status, 0) != pid);
|
while (waitpid(pid, &status, 0) != pid);
|
||||||
if (!WIFEXITED(status) ||
|
if (!WIFEXITED(status) ||
|
||||||
|
Loading…
Reference in New Issue
Block a user