qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 2/3] flush stdout after printing usage()
@ 2009-02-27 22:14 Riku Voipio
  2009-02-28 20:14 ` Blue Swirl
  0 siblings, 1 reply; 2+ messages in thread
From: Riku Voipio @ 2009-02-27 22:14 UTC (permalink / raw)
  To: qemu-devel

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>
---
 bsd-user/main.c    |    4 ++--
 darwin-user/main.c |    4 ++--
 linux-user/main.c  |    4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/bsd-user/main.c b/bsd-user/main.c
index 7d0d4b3..74a1ba6 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;
diff --git a/darwin-user/main.c b/darwin-user/main.c
index 24e738b..9b8a3dc 100644
--- a/darwin-user/main.c
+++ b/darwin-user/main.c
@@ -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
         {
diff --git a/linux-user/main.c b/linux-user/main.c
index 00259dc..6e2984c 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");
-- 
1.6.1.3


-- 
"rm -rf" only sounds scary if you don't have backups

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-02-28 20:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-27 22:14 [Qemu-devel] [PATCH 2/3] flush stdout after printing usage() Riku Voipio
2009-02-28 20:14 ` Blue Swirl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).