diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-14 20:57:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-14 21:43:09 -0400 |
commit | d0f81e3d2afdf7a89fd466799f2d900da9f2ac40 (patch) | |
tree | 2c058bfff5091da15caffee8e8b666b5c5864c8e /sys/include | |
parent | 3e3ff0acccfbb1d251a9b9bacbf0851c9de69561 (diff) |
kernel: sched: Add exit routine
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/sched.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/sched.h b/sys/include/sys/sched.h index d803df0..f06c104 100644 --- a/sys/include/sys/sched.h +++ b/sys/include/sys/sched.h @@ -38,6 +38,7 @@ #include <machine/frame.h> void sched_init(void); +void sched_exit(void); void sched_context_switch(struct trapframe *tf); __noreturn |