From 38e584a07279fffcfbfcafb207ce842edd093033 Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 10 Aug 2003 22:14:22 +0000 Subject: m68k host port (Richard Zidlicky) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@357 c046a42c-6fe2-441c-8c8c-71466251a162 --- cpu-exec.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'cpu-exec.c') diff --git a/cpu-exec.c b/cpu-exec.c index ecab6ff11d..fe165dffdd 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -642,6 +642,23 @@ int cpu_signal_handler(int host_signum, struct siginfo *info, &uc->uc_sigmask); } +#elif defined(__mc68000) + +int cpu_signal_handler(int host_signum, struct siginfo *info, + void *puc) +{ + struct ucontext *uc = puc; + unsigned long pc; + int is_write; + + pc = uc->uc_mcontext.gregs[16]; + /* XXX: compute is_write */ + is_write = 0; + return handle_cpu_signal(pc, (unsigned long)info->si_addr, + is_write, + &uc->uc_sigmask); +} + #else #error host CPU specific signal handler needed -- cgit v1.2.1