blob: cded732a34783e600dba0b976d52030a2aec039c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef I386_SYSCALL_H
#define I386_SYSCALL_H
#include <kernel/isr.h>
void syscall_dispatch(struct isr_frame *frame);
void register_syscall(void *handler(struct isr_frame*), int num);
void sys_stop(struct isr_frame *frame);
void sys_status(struct isr_frame *frame);
void dump_reg(struct isr_frame *frame);
#endif
|