From a75acb568a301903f00d3230467de2a097cce0db Mon Sep 17 00:00:00 2001 From: Alexis211 Date: Tue, 10 Aug 2010 22:17:24 +0200 Subject: Added priorities to the scheduler. --- Grapes.fl.img | Bin 1474560 -> 1474560 bytes src/kernel/core/kmain.c | 7 ++----- src/kernel/task/sched.c | 50 +++++++++++++++++++++++++++++++++++------------- src/kernel/task/task.c | 6 +++--- 4 files changed, 42 insertions(+), 21 deletions(-) diff --git a/Grapes.fl.img b/Grapes.fl.img index 2166fa4..954d817 100644 Binary files a/Grapes.fl.img and b/Grapes.fl.img differ diff --git a/src/kernel/core/kmain.c b/src/kernel/core/kmain.c index a7b8414..65a39e6 100644 --- a/src/kernel/core/kmain.c +++ b/src/kernel/core/kmain.c @@ -34,10 +34,6 @@ void kmain(struct multiboot_info_t* mbd, int32_t magic) { mem_placementAddr = (mods[i].mod_end & 0xFFFFF000) + 0x1000; } - if (magic != MULTIBOOT_BOOTLOADER_MAGIC) { - PANIC("wrong multiboot magic number."); - } - monitor_write("Grapes 0.0.4 'Cat in my heart' starting up :\n"); idt_init(); @@ -46,8 +42,9 @@ void kmain(struct multiboot_info_t* mbd, int32_t magic) { paging_init(totalRam); gdt_init(); paging_cleanup(); + kheap_init(); - timer_init(15); + timer_init(30); tasking_init(); monitor_write("\nLoading modules :\n"); diff --git a/src/kernel/task/sched.c b/src/kernel/task/sched.c index 85329ea..2b0ef8a 100644 --- a/src/kernel/task/sched.c +++ b/src/kernel/task/sched.c @@ -2,25 +2,49 @@ #include #include -static struct thread *queue = 0, *last = 0; +// Lower priority numbers have high priority. Priorities must start at 0. +#define PRIORITIES 4 // we have 4 priority levels +#define PRIORITY(t) (t->process->privilege) //get priority for a thread -/* Used by task.c. Enqueus a thread in the queue of threads waiting to run. */ -void sched_enqueue(struct thread *t) { +extern struct thread *idle_thread; + +static struct thread *queue[PRIORITIES] = {0}, *last[PRIORITIES] = {0}; + +/* For internal use only. Enqueues specified thread in specified priority queue. */ +static void sched_enqueueIn(struct thread *t, int qid) { t->queue_next = 0; - if (queue == 0) { - queue = last = t; + if (queue[qid] == 0) { + queue[qid] = last[qid] = t; } else { - last->queue_next = t; - last = t; + last[qid]->queue_next = t; + last[qid] = t; } } -/* Used by task.c. Pops a thread from the queue to be run. */ +/* For internal use only. Pops a thread from specified queue, if available. */ +static struct thread *sched_dequeueFrom(int qid) { + if (queue[qid] == 0) return 0; + struct thread *it = queue[qid]; + ASSERT((it->queue_next == 0 && it == last[qid]) || it != last[qid]); + queue[qid] = it->queue_next; + if (queue[qid] == 0) last[qid] = 0; + return it; +} + +/* Used by task.c. Enqueus a thread in the corresponding priority queue. */ +void sched_enqueue(struct thread *t) { + if (t == idle_thread) return; + sched_enqueueIn(t, PRIORITY(t)); +} + +/* Used by task.c. Pops a thread from the lowest priority non-empty queue. */ struct thread *sched_dequeue() { - if (queue == 0) return 0; - struct thread *it = queue; - ASSERT((it->queue_next == 0 && it == last) || it != last); - queue = it->queue_next; - if (queue == 0) last = 0; + struct thread *it = 0; + int i; + for (i = 0; i < PRIORITIES; i++) { + it = sched_dequeueFrom(i); + if (it != 0) break; + } + if (it == 0) return idle_thread; return it; } diff --git a/src/kernel/task/task.c b/src/kernel/task/task.c index 9d64b9e..8dcf713 100644 --- a/src/kernel/task/task.c +++ b/src/kernel/task/task.c @@ -24,7 +24,7 @@ extern void task_idle(void*); static uint32_t nextpid = 1; struct process *processes = 0, *kernel_process; -struct thread *current_thread = 0, *idle_thread; +struct thread *current_thread = 0, *idle_thread = 0; uint32_t tasking_tmpStack[KSTACKSIZE]; @@ -76,11 +76,11 @@ void tasking_switch() { current_thread->esp = esp; current_thread->ebp = ebp; current_thread->eip = eip; - if (current_thread->state == TS_RUNNING && current_thread != idle_thread) sched_enqueue(current_thread); + if (current_thread->state == TS_RUNNING) sched_enqueue(current_thread); } current_thread = sched_dequeue(); - if (current_thread == 0) current_thread = idle_thread; + ASSERT(current_thread != 0); pagedir_switch(current_thread->process->pagedir); -- cgit v1.2.3