* Send an interrupt to process.
*/
void
-sendsig(catcher, sig, mask, code)
+sendsig(catcher, sig, mask, code, type, val)
sig_t catcher;
int sig, mask;
u_long code;
+ int type;
+ union sigval val;
{
register struct proc *p = curproc;
register struct sigframe *fp;
u_quad_t sticks;
vm_prot_t ftype;
extern unsigned onfault_table[];
+ int typ;
#ifdef DEBUG
trp->status = statusReg;
}
ucode = vadr;
i = SIGSEGV;
+ typ = SEGV_MAPERR;
break;
}
case T_ADDR_ERR_LD+T_USER: /* misaligned or kseg access */
case T_ADDR_ERR_ST+T_USER: /* misaligned or kseg access */
+ i = SIGBUS;
+ typ = BUS_ADRALN;
+ break;
case T_BUS_ERR_IFETCH+T_USER: /* BERR asserted to cpu */
case T_BUS_ERR_LD_ST+T_USER: /* BERR asserted to cpu */
i = SIGBUS;
+ typ = BUS_OBJERR;
break;
case T_SYSCALL+T_USER:
#endif
if (p->p_md.md_ss_addr != va || instr != MACH_BREAK_SSTEP) {
i = SIGTRAP;
+ typ = TRAP_TRACE;
break;
}
p->p_md.md_ss_addr, p->p_md.md_ss_instr);
p->p_md.md_ss_addr = 0;
i = SIGTRAP;
+ typ = TRAP_BRKPT;
break;
}
case T_RES_INST+T_USER:
i = SIGILL;
+ typ = ILL_ILLOPC;
break;
case T_COP_UNUSABLE+T_USER:
if ((causeReg & MACH_CR_COP_ERR) != 0x10000000) {
i = SIGILL; /* only FPU instructions allowed */
+ typ = ILL_ILLOPC;
break;
}
MachSwitchFPState(machFPCurProcPtr,
case T_OVFLOW+T_USER:
i = SIGFPE;
+ typ = FPE_FLTOVF;
break;
case T_ADDR_ERR_LD: /* misaligned access */
p->p_md.md_regs [PC] = pc;
p->p_md.md_regs [CAUSE] = causeReg;
p->p_md.md_regs [BADVADDR] = vadr;
- trapsignal(p, i, ucode);
+ trapsignal(p, i, ucode, typ, (caddr_t)vadr);
out:
/*
* Note: we should only get here if returning to user mode.