diff options
| author | Ian Moffett <ian@osmora.org> | 2025-11-19 22:55:34 -0500 |
|---|---|---|
| committer | Ian Moffett <ian@osmora.org> | 2025-11-19 22:55:34 -0500 |
| commit | 5a3204039b6033d15ca8812cfc7e9d523c9da2bb (patch) | |
| tree | 9968b05389a1f7dbf788bd1d6352a9fdd4089555 /sys/inc | |
| parent | 76974be4fe63929ca58e485a05bfa5279881f745 (diff) | |
kern: sched: Add scheduler quantum define
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/inc')
| -rw-r--r-- | sys/inc/os/sched.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/inc/os/sched.h b/sys/inc/os/sched.h index c0355c6..1caf1d6 100644 --- a/sys/inc/os/sched.h +++ b/sys/inc/os/sched.h @@ -34,6 +34,8 @@ #include <os/process.h> #include <mu/cpu.h> +#define SCHED_QUANTUM 9000 /* In usec */ + /* * Enqueue a process into a runqueue and return the processor * now associated |
