Home
last modified time | relevance | path

Searched refs:EXP_USER (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/sys/arch/sh/sh/
H A Dtrap.c174 expevt |= EXP_USER; in general_exception()
197 case EXPEVT_TRAPA | EXP_USER: in general_exception()
203 trapsignal(p, SIGTRAP, expevt & ~EXP_USER, TRAP_BRKPT, in general_exception()
214 trapsignal(p, SIGILL, expevt & ~EXP_USER, ILL_ILLTRP, in general_exception()
228 case EXPEVT_ADDR_ERR_LD | EXP_USER: /* FALLTHROUGH */ in general_exception()
229 case EXPEVT_ADDR_ERR_ST | EXP_USER: in general_exception()
232 trapsignal(p, SIGSEGV, expevt & ~EXP_USER, SEGV_ACCERR, in general_exception()
235 trapsignal(p, SIGBUS, expevt & ~EXP_USER, BUS_ADRALN, in general_exception()
239 case EXPEVT_RES_INST | EXP_USER: /* FALLTHROUGH */ in general_exception()
240 case EXPEVT_SLOT_INST | EXP_USER: in general_exception()
[all …]
/openbsd-src/sys/arch/sh/include/
H A Dtrap.h72 #define EXP_USER 0x001 /* exception from user-mode */ macro