diff options
author | Marvin Borner | 2021-04-27 23:01:51 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-27 23:01:51 +0200 |
commit | 51a80930a9bc25fae0728994cab1e0df3b63ef48 (patch) | |
tree | e08c4f8fdc3a73cca3a291ab901c2bcf6dac453e /kernel/inc | |
parent | 977e62973abda3dd9fe5cb3462fc87d273ba63e3 (diff) |
Huge compositor, timer and yielding improvements
Diffstat (limited to 'kernel/inc')
-rw-r--r-- | kernel/inc/proc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h index 5b8fbea..877e53e 100644 --- a/kernel/inc/proc.h +++ b/kernel/inc/proc.h @@ -61,6 +61,7 @@ void proc_init(void); void proc_print(void); struct proc *proc_current(void); u8 proc_super(void); +u8 proc_idle(void); struct proc *proc_from_pid(u32 pid); void proc_exit(struct proc *proc, struct regs *r, s32 status) NONNULL; void proc_yield(void); |