aboutsummaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/trap.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/sys/arch/amd64/amd64/trap.c b/sys/arch/amd64/amd64/trap.c
index 44482b7..85d1058 100644
--- a/sys/arch/amd64/amd64/trap.c
+++ b/sys/arch/amd64/amd64/trap.c
@@ -48,8 +48,6 @@ static const char *trap_type[] = {
};
static const int TRAP_COUNT = __ARRAY_COUNT(trap_type);
-static ftrap_handler_t ftrap_handler = NULL;
-static struct spinlock ftrap_handler_lock = { 0 };
static void
trap_print(struct trapframe *tf)
@@ -66,17 +64,6 @@ trap_print(struct trapframe *tf)
}
/*
- * Registers a handler for *fatal* traps.
- */
-void
-register_ftrap_handler(ftrap_handler_t handler)
-{
- spinlock_acquire(&ftrap_handler_lock);
- ftrap_handler = handler;
- spinlock_release(&ftrap_handler_lock);
-}
-
-/*
* Handles traps.
*/
void