mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Raise SIGILL for General Exceptions - its closer to the correct meaning.
This commit is contained in:
parent
3930f05aca
commit
412fcd9856
1 changed files with 7 additions and 0 deletions
|
|
@ -536,6 +536,13 @@ trap(int vector, int imm, struct trapframe *framep)
|
|||
break;
|
||||
|
||||
case IA64_VEC_GENERAL_EXCEPTION:
|
||||
if (user) {
|
||||
ucode = vector;
|
||||
i = SIGILL;
|
||||
break;
|
||||
}
|
||||
goto dopanic;
|
||||
|
||||
case IA64_VEC_UNSUPP_DATA_REFERENCE:
|
||||
case IA64_VEC_LOWER_PRIVILEGE_TRANSFER:
|
||||
if (user) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue