提交 2d18e637 编写于 作者: B blueswir1

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: NRiku Voipio <riku.voipio@iki.fi>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6657 c046a42c-6fe2-441c-8c8c-71466251a162
上级 2adab7d6
......@@ -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;
......
......@@ -756,7 +756,7 @@ void usage(void)
interp_prefix,
stack_size,
DEBUG_LOGFILE);
_exit(1);
exit(1);
}
/* XXX: currently only used for async signals (see signal.c) */
......@@ -840,7 +840,7 @@ int main(int argc, char **argv)
#if defined(cpu_list)
cpu_list(stdout, &fprintf);
#endif
_exit(1);
exit(1);
}
} else
{
......
......@@ -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");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册