diff options
author | Danny Holman <dholman@gymli.org> | 2024-05-29 00:30:10 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-05-29 00:30:10 -0500 |
commit | 32441640aa2e78fd4aa8db00ec07a62c9d12f2d2 (patch) | |
tree | 92c4799926f6350480118f0a737577143d5726c9 /arch/i386/include/kernel | |
parent | ffc782f8740027d21793c37c6094ebed06d1dfd2 (diff) |
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 <dholman@gymli.org>
Diffstat (limited to 'arch/i386/include/kernel')
-rw-r--r-- | arch/i386/include/kernel/syscall.h | 3 | ||||
-rw-r--r-- | arch/i386/include/kernel/timer.h | 2 |
2 files changed, 3 insertions, 2 deletions
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 <kernel/asm.h> -void timer_handler(struct regs *regs); +void timer_handler(struct isr_frame *frame); void timer_init(void); #endif |