Removed all traces of T_ASTFLT (except for gaps where it was). It became
unused except in dead code when ast() was split off from trap().
This commit is contained in:
parent
619ab04511
commit
0ad74739ac
@ -123,7 +123,7 @@ static char *trap_msg[] = {
|
||||
"", /* 4 unused */
|
||||
"", /* 5 unused */
|
||||
"arithmetic trap", /* 6 T_ARITHTRAP */
|
||||
"system forced exception", /* 7 T_ASTFLT */
|
||||
"", /* 7 unused */
|
||||
"", /* 8 unused */
|
||||
"general protection fault", /* 9 T_PROTFLT */
|
||||
"trace trap", /* 10 T_TRCTRAP */
|
||||
|
@ -48,7 +48,6 @@
|
||||
#define T_PRIVINFLT 1 /* privileged instruction */
|
||||
#define T_BPTFLT 3 /* breakpoint instruction */
|
||||
#define T_ARITHTRAP 6 /* arithmetic trap */
|
||||
#define T_ASTFLT 7 /* system forced exception */
|
||||
#define T_PROTFLT 9 /* protection fault */
|
||||
#define T_TRCTRAP 10 /* debug exception (sic) */
|
||||
#define T_PAGEFLT 12 /* page fault */
|
||||
|
@ -123,7 +123,7 @@ static char *trap_msg[] = {
|
||||
"", /* 4 unused */
|
||||
"", /* 5 unused */
|
||||
"arithmetic trap", /* 6 T_ARITHTRAP */
|
||||
"system forced exception", /* 7 T_ASTFLT */
|
||||
"", /* 7 unused */
|
||||
"", /* 8 unused */
|
||||
"general protection fault", /* 9 T_PROTFLT */
|
||||
"trace trap", /* 10 T_TRCTRAP */
|
||||
|
@ -48,7 +48,6 @@
|
||||
#define T_PRIVINFLT 1 /* privileged instruction */
|
||||
#define T_BPTFLT 3 /* breakpoint instruction */
|
||||
#define T_ARITHTRAP 6 /* arithmetic trap */
|
||||
#define T_ASTFLT 7 /* system forced exception */
|
||||
#define T_PROTFLT 9 /* protection fault */
|
||||
#define T_TRCTRAP 10 /* debug exception (sic) */
|
||||
#define T_PAGEFLT 12 /* page fault */
|
||||
|
@ -67,7 +67,6 @@ doreti_next:
|
||||
je doreti_exit /* no, defer */
|
||||
|
||||
doreti_ast:
|
||||
movl $T_ASTFLT,TF_TRAPNO(%esp)
|
||||
call _ast
|
||||
|
||||
/*
|
||||
|
@ -123,7 +123,7 @@ static char *trap_msg[] = {
|
||||
"", /* 4 unused */
|
||||
"", /* 5 unused */
|
||||
"arithmetic trap", /* 6 T_ARITHTRAP */
|
||||
"system forced exception", /* 7 T_ASTFLT */
|
||||
"", /* 7 unused */
|
||||
"", /* 8 unused */
|
||||
"general protection fault", /* 9 T_PROTFLT */
|
||||
"trace trap", /* 10 T_TRCTRAP */
|
||||
|
Loading…
Reference in New Issue
Block a user