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:
Bruce Evans 2001-02-19 15:47:38 +00:00
parent 619ab04511
commit 0ad74739ac
6 changed files with 3 additions and 6 deletions

View File

@ -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 */

View File

@ -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 */

View File

@ -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 */

View File

@ -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 */

View File

@ -67,7 +67,6 @@ doreti_next:
je doreti_exit /* no, defer */
doreti_ast:
movl $T_ASTFLT,TF_TRAPNO(%esp)
call _ast
/*

View File

@ -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 */