From 32441640aa2e78fd4aa8db00ec07a62c9d12f2d2 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Wed, 29 May 2024 00:30:10 -0500 Subject: arch: i386: remove last refs to moved headers Remove all the remaining references to headers that were moved into the libk. Signed-off-by: Danny Holman --- arch/i386/include/kernel/syscall.h | 3 ++- arch/i386/include/kernel/timer.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'arch/i386/include') diff --git a/arch/i386/include/kernel/syscall.h b/arch/i386/include/kernel/syscall.h index 88ee59a..a689183 100644 --- a/arch/i386/include/kernel/syscall.h +++ b/arch/i386/include/kernel/syscall.h @@ -26,8 +26,9 @@ #define SYS_CLOSE 18 #define SYS_EXEC 19 +#define SYS_HALT 87 #define SYS_REBOOT 88 -int handle_syscall(struct regs *regs); +int handle_syscall(struct isr_frame *frame); #endif diff --git a/arch/i386/include/kernel/timer.h b/arch/i386/include/kernel/timer.h index 1bc2855..c0b3a73 100644 --- a/arch/i386/include/kernel/timer.h +++ b/arch/i386/include/kernel/timer.h @@ -3,7 +3,7 @@ #include -void timer_handler(struct regs *regs); +void timer_handler(struct isr_frame *frame); void timer_init(void); #endif -- cgit v1.2.3