202b6aaad6
QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation. QEMU has two operating modes: * Full system emulation. In this mode, QEMU emulates a full system (for example a PC), including a processor and various peripherials. It can be used to launch different Operating Systems without rebooting the PC or to debug system code. * User mode emulation (Linux host only). In this mode, .. many thanks for feedback from many people, and for Lars Hansson and Michael Schmidt for posting early work on the port of qemu to ports@ For now, only for macppc and i386, as these are currently the only archs that have reported success building qemu. QEMU can launch Linux processes compiled for one CPU on another CPU.
14 lines
661 B
Plaintext
14 lines
661 B
Plaintext
$OpenBSD: patch-target-ppc_cpu_h,v 1.1.1.1 2005/03/07 16:41:28 todd Exp $
|
|
--- target-ppc/cpu.h.orig Tue Feb 15 17:06:19 2005
|
|
+++ target-ppc/cpu.h Sun Feb 27 15:47:13 2005
|
|
@@ -163,8 +163,7 @@ void cpu_ppc_close(CPUPPCState *s);
|
|
/* you can call this signal handler from your SIGBUS and SIGSEGV
|
|
signal handlers to inform the virtual CPU of exceptions. non zero
|
|
is returned if the signal was handled by the virtual CPU. */
|
|
-struct siginfo;
|
|
-int cpu_ppc_signal_handler(int host_signum, struct siginfo *info,
|
|
+int cpu_ppc_signal_handler(int host_signum, qemu_siginfo *info,
|
|
void *puc);
|
|
|
|
void do_interrupt (CPUPPCState *env);
|