diff options
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/sched.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/include/sys/sched.h b/sys/include/sys/sched.h index 6689e3b..8245120 100644 --- a/sys/include/sys/sched.h +++ b/sys/include/sys/sched.h @@ -34,6 +34,7 @@ #include <sys/queue.h> #include <sys/types.h> #include <sys/spinlock.h> +#include <sys/syscall.h> #include <machine/cpu.h> #include <machine/frame.h> @@ -44,6 +45,9 @@ void sched_context_switch(struct trapframe *tf); void sched_rest(void); __noreturn +uint64_t sys_exit(struct syscall_args *args); + +__noreturn void sched_init_processor(struct cpu_info *ci); #endif /* !_SYS_SCHED_H_ */ |