diff options
Diffstat (limited to 'arch/i386/include/kernel')
-rw-r--r-- | arch/i386/include/kernel/isr.h | 2 | ||||
-rw-r--r-- | arch/i386/include/kernel/syscall.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/arch/i386/include/kernel/isr.h b/arch/i386/include/kernel/isr.h index f177ee2..4e21f8f 100644 --- a/arch/i386/include/kernel/isr.h +++ b/arch/i386/include/kernel/isr.h @@ -11,8 +11,6 @@ struct isr_frame { uint32_t edi; uint32_t esi; - uint32_t ebp; - uint32_t esp; uint32_t edx; uint32_t ecx; uint32_t ebx; diff --git a/arch/i386/include/kernel/syscall.h b/arch/i386/include/kernel/syscall.h index cded732..4f74c1f 100644 --- a/arch/i386/include/kernel/syscall.h +++ b/arch/i386/include/kernel/syscall.h @@ -3,6 +3,7 @@ #include <kernel/isr.h> +void halt_catch_fire(struct isr_frame *frame); void syscall_dispatch(struct isr_frame *frame); void register_syscall(void *handler(struct isr_frame*), int num); void sys_stop(struct isr_frame *frame); |