Lines Matching refs:ei
122 bool ei; member
127 [T_PRIVINFLT] = { .ei = true, .msg = "privileged instruction fault" },
128 [T_BPTFLT] = { .ei = false, .msg = "breakpoint instruction fault" },
129 [T_ARITHTRAP] = { .ei = true, .msg = "arithmetic trap" },
130 [T_PROTFLT] = { .ei = true, .msg = "general protection fault" },
131 [T_TRCTRAP] = { .ei = false, .msg = "debug exception" },
132 [T_PAGEFLT] = { .ei = true, .msg = "page fault" },
133 [T_ALIGNFLT] = { .ei = true, .msg = "alignment fault" },
134 [T_DIVIDE] = { .ei = true, .msg = "integer divide fault" },
135 [T_NMI] = { .ei = false, .msg = "non-maskable interrupt trap" },
136 [T_OFLOW] = { .ei = true, .msg = "overflow trap" },
137 [T_BOUND] = { .ei = true, .msg = "FPU bounds check fault" },
138 [T_DNA] = { .ei = true, .msg = "FPU device not available" },
139 [T_DOUBLEFLT] = { .ei = false, .msg = "double fault" },
140 [T_FPOPFLT] = { .ei = true, .msg = "FPU operand fetch fault" },
141 [T_TSSFLT] = { .ei = true, .msg = "invalid TSS fault" },
142 [T_SEGNPFLT] = { .ei = true, .msg = "segment not present fault" },
143 [T_STKFLT] = { .ei = true, .msg = "stack fault" },
144 [T_MCHK] = { .ei = true, .msg = "machine check trap" },
145 [T_XMMFLT] = { .ei = true, .msg = "SIMD floating-point exception" },
146 [T_DTRACE_RET] ={ .ei = true, .msg = "DTrace pid return trap" },
155 return (trap_data[trapno].ei); in trap_enable_intr()