10 lines
217 B
C
10 lines
217 B
C
#ifndef _KERNEL_SYS_SCHED_H
|
|
#define _KERNEL_SYS_SCHED_H
|
|
|
|
#include <libk/std.h>
|
|
#include <proc/proc.h>
|
|
|
|
void do_sched (struct proc* proc, spin_lock_t* cpu_lock, spin_lock_ctx_t* ctxcpu);
|
|
|
|
#endif // _KERNEL_SYS_SCHED_H
|