diff options
author | Ian Moffett <ian@osmora.org> | 2024-02-18 21:39:33 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-02-18 21:39:33 -0500 |
commit | b9ac16de634e04b92d5a050381a363ed1d4aeb52 (patch) | |
tree | a922b5ebccc2b0496fff46f9a9ed95db8534dfd1 /sys/arch/amd64/amd64 | |
parent | 337df873ef9e9349e2c60feeac453823335aa9d8 (diff) |
kernel/amd64: trap: Remove useless function
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch/amd64/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/trap.c | 13 |
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 |