diff options
| author | blueswir1 | 2009-02-28 21:14:00 +0100 |
|---|---|---|
| committer | blueswir1 | 2009-02-28 21:14:00 +0100 |
| commit | 2d18e637e5ec628f165bc8866ed1ba73332c9386 (patch) | |
| tree | ab0db898e88945499857b40f69e0ee1b620a2f90 /linux-user | |
| parent | Implement HIOR (diff) | |
| download | qemu-2d18e637e5ec628f165bc8866ed1ba73332c9386.tar.gz qemu-2d18e637e5ec628f165bc8866ed1ba73332c9386.tar.xz qemu-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 'linux-user')
| -rw-r--r-- | linux-user/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 00259dc7cb..6e2984c44b 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -2213,7 +2213,7 @@ static void usage(void) interp_prefix, x86_stack_size, DEBUG_LOGFILE); - _exit(1); + exit(1); } THREAD CPUState *thread_env; @@ -2335,7 +2335,7 @@ int main(int argc, char **argv, char **envp) #if defined(cpu_list) cpu_list(stdout, &fprintf); #endif - _exit(1); + exit(1); } } else if (!strcmp(r, "drop-ld-preload")) { (void) envlist_unsetenv(envlist, "LD_PRELOAD"); |
