All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m55s
14 lines
244 B
C
14 lines
244 B
C
#ifndef _KERNEL_PROC_RESCHEDULE_H
|
|
#define _KERNEL_PROC_RESCHEDULE_H
|
|
|
|
#include <libk/list.h>
|
|
#include <sync/spin_lock.h>
|
|
#include <sys/smp.h>
|
|
|
|
struct reschedule_ctx {
|
|
bool reschedule;
|
|
struct cpu* cpu;
|
|
};
|
|
|
|
#endif // _KERNEL_PROC_RESCHEDULE_H
|