From: deraadt Date: Mon, 3 Feb 1997 11:45:17 +0000 (+0000) Subject: SA_SIGINFO X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=55dfc035099a1c392d670bc2e1648809edca76e0;p=openbsd SA_SIGINFO --- diff --git a/sys/arch/pmax/pmax/machdep.c b/sys/arch/pmax/pmax/machdep.c index 52873ff3cfb..e1ca75aa662 100644 --- a/sys/arch/pmax/pmax/machdep.c +++ b/sys/arch/pmax/pmax/machdep.c @@ -943,10 +943,12 @@ int sigpid = 0; * 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; diff --git a/sys/arch/pmax/pmax/trap.c b/sys/arch/pmax/pmax/trap.c index 92d3721a567..9552a662475 100644 --- a/sys/arch/pmax/pmax/trap.c +++ b/sys/arch/pmax/pmax/trap.c @@ -411,6 +411,7 @@ trap(statusReg, causeReg, vadr, pc, args) u_quad_t sticks; vm_prot_t ftype; extern unsigned onfault_table[]; + int typ; #ifdef DEBUG trp->status = statusReg; @@ -597,14 +598,19 @@ trap(statusReg, causeReg, vadr, pc, args) } 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: @@ -824,6 +830,7 @@ trap(statusReg, causeReg, vadr, pc, args) #endif if (p->p_md.md_ss_addr != va || instr != MACH_BREAK_SSTEP) { i = SIGTRAP; + typ = TRAP_TRACE; break; } @@ -849,16 +856,19 @@ trap(statusReg, causeReg, vadr, pc, args) 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, @@ -883,6 +893,7 @@ trap(statusReg, causeReg, vadr, pc, args) case T_OVFLOW+T_USER: i = SIGFPE; + typ = FPE_FLTOVF; break; case T_ADDR_ERR_LD: /* misaligned access */ @@ -942,7 +953,7 @@ trap(statusReg, causeReg, vadr, pc, args) 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.