From b9ac16de634e04b92d5a050381a363ed1d4aeb52 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 18 Feb 2024 21:39:33 -0500 Subject: kernel/amd64: trap: Remove useless function Signed-off-by: Ian Moffett --- sys/arch/amd64/amd64/trap.c | 13 ------------- sys/include/arch/amd64/trap.h | 1 - 2 files changed, 14 deletions(-) (limited to 'sys') 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) @@ -65,17 +63,6 @@ trap_print(struct trapframe *tf) kprintf(" in %s mode **\n", mode); } -/* - * 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. */ diff --git a/sys/include/arch/amd64/trap.h b/sys/include/arch/amd64/trap.h index dc3baba..1019999 100644 --- a/sys/include/arch/amd64/trap.h +++ b/sys/include/arch/amd64/trap.h @@ -65,7 +65,6 @@ void segnp(void *sf); void general_prot(void *sf); void page_fault(void *sf); void nmi(void *sf); -void register_ftrap_handler(ftrap_handler_t handler); void trap_handler(struct trapframe *tf); #else .macro handle_trap -- cgit v1.2.3