aboutsummaryrefslogtreecommitdiffstats
path: root/net.c
diff options
context:
space:
mode:
authorIliyan Malchev <malchev@google.com>2012-04-02 08:20:56 -0700
committerAndrew Hsieh <andrewhsieh@google.com>2012-06-01 13:33:28 +0800
commit4a2c9dd7630ce51a660e1aa14e10bc6fbc4621c4 (patch)
tree6f0e66780f8364eab816fa0b3fac081462963a37 /net.c
parent4912ddd4570cef75a9434b12eff707b3c834cc05 (diff)
downloadexternal_qemu-4a2c9dd7630ce51a660e1aa14e10bc6fbc4621c4.zip
external_qemu-4a2c9dd7630ce51a660e1aa14e10bc6fbc4621c4.tar.gz
external_qemu-4a2c9dd7630ce51a660e1aa14e10bc6fbc4621c4.tar.bz2
replace _exit() with exit()
When the emulator is compiled with -pg, it generates a stats file (gmon.out) upon exiting, as long as the exit it done when main() returns normally or exit() is called. Calling _exit() or exiting via an unhandled signal will not cause gmon.out to be generated. Change-Id: I0d5ea5a0b0314f97d2fdc0c92fd6f38c65377eb9 Signed-off-by: Iliyan Malchev <malchev@google.com>
Diffstat (limited to 'net.c')
-rw-r--r--net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net.c b/net.c
index 1deca85..219ed30 100644
--- a/net.c
+++ b/net.c
@@ -1357,7 +1357,7 @@ static int launch_script(const char *setup_script, const char *ifname, int fd)
*parg++ = (char *)ifname;
*parg++ = NULL;
execv(setup_script, args);
- _exit(1);
+ exit(1);
} else if (pid > 0) {
while (waitpid(pid, &status, 0) != pid) {
/* loop */