diff options
author | 2009-02-28 20:14:00 +0000 | |
---|---|---|
committer | 2009-02-28 20:14:00 +0000 | |
commit | 2d18e637e5ec628f165bc8866ed1ba73332c9386 (patch) | |
tree | ab0db898e88945499857b40f69e0ee1b620a2f90 /bsd-user | |
parent | Implement HIOR (diff) | |
download | qemu-kvm-2d18e637e5ec628f165bc8866ed1ba73332c9386.tar.gz qemu-kvm-2d18e637e5ec628f165bc8866ed1ba73332c9386.tar.bz2 qemu-kvm-2d18e637e5ec628f165bc8866ed1ba73332c9386.zip |
Flush stdout after printing usage()
Fixes qemu-arm|grep cpu - with _exit() getting output from qemu --help
is a bit random. Since no atexit() handlers are registered for user mode
emulation, just use exit() instead.
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6657 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'bsd-user')
-rw-r--r-- | bsd-user/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index 7d0d4b397..74a1ba61f 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -351,7 +351,7 @@ static void usage(void) interp_prefix, x86_stack_size, DEBUG_LOGFILE); - _exit(1); + exit(1); } THREAD CPUState *thread_env; @@ -448,7 +448,7 @@ int main(int argc, char **argv) #if defined(cpu_list) cpu_list(stdout, &fprintf); #endif - _exit(1); + exit(1); } } else if (!strcmp(r, "drop-ld-preload")) { drop_ld_preload = 1; |