diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-08 21:05:55 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-08 21:05:55 +0000 |
commit | 9617efe8e78fe977c8ddbb18d7b14b532ab07c3e (patch) | |
tree | 1e02c79c07cb25fd03285f4e15dcebe2e928d3dd /cpu-exec.c | |
parent | e14a693ddaec910888ba2870aab35b5eb8793e5d (diff) | |
download | qemu-9617efe8e78fe977c8ddbb18d7b14b532ab07c3e.zip |
Another bunch of mips host support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2788 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index cd74412a76..fedabef601 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -1545,9 +1545,10 @@ int cpu_signal_handler(int host_signum, void *pinfo, #elif defined(__mips__) -int cpu_signal_handler(int host_signum, struct siginfo *info, +int cpu_signal_handler(int host_signum, void *pinfo, void *puc) { + siginfo_t *info = pinfo; struct ucontext *uc = puc; greg_t pc = uc->uc_mcontext.pc; int is_write; |