qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC] darwin: work around sigfd
@ 2011-05-05  9:36 Alexander Graf
  2011-05-05 12:56 ` Paolo Bonzini
  0 siblings, 1 reply; 11+ messages in thread
From: Alexander Graf @ 2011-05-05  9:36 UTC (permalink / raw)
  To: QEMU-devel Developers; +Cc: Paolo Bonzini, Andreas Faerber, Jan Kiszka

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1764 bytes --]

When running qemu-system on Darwin, the vcpu processes guest code, but
I don't get to see anything on the cocoa screen.

When running a guest with -nographic, time stands still for the guest:

[    0.000000] Detected 2659.508 MHz processor.
[    0.000756] Calibrating delay loop (skipped), value calculated using timer frequency.. 5319.01 BogoMIPS (lpj=2659508)
[    0.000999] pid_max: default: 32768 minimum: 301
[    0.000999] Security Framework initialized
[    0.000999] AppArmor: AppArmor initialized
[...]
[    0.000999] Kernel panic - not syncing: IO-APIC + timer doesn't work!  Boot with apic=debug and send a report.  Then try booting with the 'noapic' option.
[    0.000999]
[...]
[    0.000999]  [<ffffffff81b3ec92>] kernel_init+0x8f/0x206
[    0.000999]  [<ffffffff81003d74>] kernel_thread_helper+0x4/0x10

This patch makes qemu-system work again on Darwin, but is obviously
just a hack. I'd really like to see some more clever people find out
what exactly is going wrong to find a real solution!

Reported-by: Andreas Färber <andreas.faerber@web.de>
(no signed-off-by on purpose - it's an RFC!)
---
 cpus.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/cpus.c b/cpus.c
index 1fc34b7..ef604bf 100644
--- a/cpus.c
+++ b/cpus.c
@@ -388,6 +388,15 @@ static int qemu_signal_init(void)
     int sigfd;
     sigset_t set;
 
+#ifdef CONFIG_DARWIN
+    /* Darwin breaks for me with sigfd. I don't know why, but it just sits
+       there hanging. The vcpu does process things, so that one's good, but
+       there is no output. Doing the same as win32 works for me. */
+    if (1) {
+        return 0;
+    }
+#endif
+
 #ifdef CONFIG_IOTHREAD
     /* SIGUSR2 used by posix-aio-compat.c */
     sigemptyset(&set);
-- 
1.7.1

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

end of thread, other threads:[~2011-05-31 21:44 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-05  9:36 [Qemu-devel] [RFC] darwin: work around sigfd Alexander Graf
2011-05-05 12:56 ` Paolo Bonzini
2011-05-05 13:15   ` Alexander Graf
2011-05-05 13:23     ` Paolo Bonzini
2011-05-05 13:24       ` Alexander Graf
2011-05-08  9:15     ` Andreas Färber
2011-05-08 10:10       ` Andreas Färber
2011-05-09 14:04         ` Alexander Graf
2011-05-29 16:50       ` Andreas Färber
2011-05-30  8:03         ` Paolo Bonzini
2011-05-31 21:44           ` Andreas Färber

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).