aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/tasks
diff options
context:
space:
mode:
authorMarvin Borner2020-05-11 21:19:35 +0200
committerMarvin Borner2020-05-11 21:19:35 +0200
commit9b959a402f1998a9c608b917034cae81bd03b088 (patch)
treebd927930e0104e22d37ac497f304cb8b8b97f00e /src/kernel/tasks
parentd00e6a08ededb16e5d075ce28d7d797763e25c55 (diff)
Added quantum 42 counter!
Wow, this commit message sounds click-baity.. BUT this is what I implemented!
Diffstat (limited to 'src/kernel/tasks')
-rw-r--r--src/kernel/tasks/process.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/kernel/tasks/process.c b/src/kernel/tasks/process.c
index b86620d..e1a6006 100644
--- a/src/kernel/tasks/process.c
+++ b/src/kernel/tasks/process.c
@@ -12,6 +12,7 @@
#include <timer/timer.h>
u32 pid = 0;
+u32 quantum = 42; // In ms
struct process *root;
struct process *current_proc = NULL;
@@ -21,15 +22,22 @@ extern u32 stack_hold;
void scheduler(struct regs *regs)
{
+ log("%d", quantum);
+ if (quantum == 0 || current_proc->state != PROC_RUNNING) {
+ quantum = 42; // For next process
+ } else {
+ quantum--;
+ return;
+ }
+
serial_put('+');
memcpy(&current_proc->registers, regs, sizeof(struct regs));
timer_handler(regs);
current_proc = current_proc->next;
- if (current_proc == NULL) {
+ if (current_proc == NULL)
current_proc = root;
- }
/* debug("Max pid: %d", pid); */
/* debug("Task switch to %s with pid %d", current_proc->name, current_proc->pid); */