sparc sigsegv support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1293 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
0bee699e1d
commit
61ff6f58e9
@ -476,6 +476,7 @@ static void flush_windows(CPUSPARCState *env)
|
||||
void cpu_loop (CPUSPARCState *env)
|
||||
{
|
||||
int trapnr, ret;
|
||||
target_siginfo_t info;
|
||||
|
||||
while (1) {
|
||||
trapnr = cpu_sparc_exec (env);
|
||||
@ -510,6 +511,17 @@ void cpu_loop (CPUSPARCState *env)
|
||||
case TT_WIN_UNF: /* window underflow */
|
||||
restore_window(env);
|
||||
break;
|
||||
case TT_TFAULT:
|
||||
case TT_DFAULT:
|
||||
{
|
||||
info.si_signo = SIGSEGV;
|
||||
info.si_errno = 0;
|
||||
/* XXX: check env->error_code */
|
||||
info.si_code = TARGET_SEGV_MAPERR;
|
||||
info._sifields._sigfault._addr = env->mmuregs[4];
|
||||
queue_signal(info.si_signo, &info);
|
||||
}
|
||||
break;
|
||||
case 0x100: // XXX, why do we get these?
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user