qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Andreas Färber" <andreas.faerber@web.de>
To: qemu-devel@nongnu.org
Cc: "Alexandre Raymond" <cerbere@gmail.com>,
	"Andreas Färber" <andreas.faerber@web.de>
Subject: [Qemu-devel] [PATCH 07/10] cocoa: Provide central qemu_main() prototype
Date: Tue, 14 Jun 2011 03:22:04 +0200	[thread overview]
Message-ID: <1308014527-60251-8-git-send-email-andreas.faerber@web.de> (raw)
In-Reply-To: <1308014527-60251-7-git-send-email-andreas.faerber@web.de>

This fixes a missing prototype warning in vl.c and obsoletes
the prototype in cocoa.m. Adjust callers in cocoa.m to supply
third argument, which is currently only used on Linux/ppc.

The prototype is designed so that it could be shared with SDL
and other frontends, if desired.

Cc: Alexandre Raymond <cerbere@gmail.com>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
---
 qemu-common.h |    5 +++++
 ui/cocoa.m    |    6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/qemu-common.h b/qemu-common.h
index 39fabc9..109498d 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -132,6 +132,11 @@ static inline char *realpath(const char *path, char *resolved_path)
 
 #endif /* !defined(NEED_CPU_H) */
 
+/* main function, renamed */
+#if defined(CONFIG_COCOA)
+int qemu_main(int argc, char **argv, char **envp);
+#endif
+
 /* bottom halves */
 typedef void QEMUBHFunc(void *opaque);
 
diff --git a/ui/cocoa.m b/ui/cocoa.m
index e1312d3..1c54759 100644
--- a/ui/cocoa.m
+++ b/ui/cocoa.m
@@ -23,6 +23,7 @@
  */
 
 #import <Cocoa/Cocoa.h>
+#include <crt_externs.h>
 
 #include "qemu-common.h"
 #include "console.h"
@@ -61,7 +62,6 @@ typedef struct {
     int bitsPerPixel;
 } QEMUScreen;
 
-int qemu_main(int argc, char **argv); // main defined in qemu/vl.c
 NSWindow *normalWindow;
 id cocoaView;
 static DisplayChangeListener *dcl;
@@ -794,7 +794,7 @@ static int cocoa_keycode_to_qemu(int keycode)
     COCOA_DEBUG("QemuCocoaAppController: startEmulationWithArgc\n");
 
     int status;
-    status = qemu_main(argc, argv);
+    status = qemu_main(argc, argv, *_NSGetEnviron());
     exit(status);
 }
 
@@ -877,7 +877,7 @@ int main (int argc, const char * argv[]) {
                 !strcmp(opt, "-nographic") ||
                 !strcmp(opt, "-version") ||
                 !strcmp(opt, "-curses")) {
-                return qemu_main(gArgc, gArgv);
+                return qemu_main(gArgc, gArgv, *_NSGetEnviron());
             }
         }
     }
-- 
1.7.5.3

  reply	other threads:[~2011-06-14  1:22 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-14  1:21 [Qemu-devel] [PULL 00/10] Fixes for Cocoa backend Andreas Färber
2011-06-14  1:21 ` [Qemu-devel] [PATCH 01/10] cocoa: do not create a spurious window for -version Andreas Färber
2011-06-14  1:21   ` [Qemu-devel] [PATCH 02/10] Fix compilation warning due to incorrectly specified type Andreas Färber
2011-06-14  1:22     ` [Qemu-devel] [PATCH 03/10] Cocoa: avoid displaying window when command-line contains '-h' or '-help' Andreas Färber
2011-06-14  1:22       ` [Qemu-devel] [PATCH 04/10] Remove warning in printf due to type mismatch Andreas Färber
2011-06-14  1:22         ` [Qemu-devel] [PATCH 05/10] configure: Fix check for fdatasync() Andreas Färber
2011-06-14  1:22           ` [Qemu-devel] [PATCH 06/10] Fix libfdt warnings on Darwin Andreas Färber
2011-06-14  1:22             ` Andreas Färber [this message]
2011-06-14  1:22               ` [Qemu-devel] [PATCH 08/10] cocoa: Revert dependency on VNC Andreas Färber
2011-06-14  1:22                 ` [Qemu-devel] [PATCH 09/10] cocoa: Avoid warning related to multiple handleEvent: definitions Andreas Färber
2011-06-14  1:22                   ` [Qemu-devel] [PATCH 10/10] Darwin: Fix compilation warning regarding the deprecated daemon() function Andreas Färber
2011-06-27 14:48                 ` [Qemu-devel] [PATCH 08/10] cocoa: Revert dependency on VNC Jes Sorensen
2011-06-15 19:31 ` [Qemu-devel] [PULL 00/10] Fixes for Cocoa backend Blue Swirl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1308014527-60251-8-git-send-email-andreas.faerber@web.de \
    --to=andreas.faerber@web.de \
    --cc=cerbere@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).