diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-04 20:06:37 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-04 20:06:37 +0200 |
commit | 277e4af4fa9e80816c809542d792ee6bebb7f202 (patch) | |
tree | 9abb7f207d185909427137e4861b81c057de1259 /src/kernel/task/sched.cpp | |
parent | e9683297bf480f9590b0e5796f4520fb430e2e03 (diff) | |
download | TCE-277e4af4fa9e80816c809542d792ee6bebb7f202.tar.gz TCE-277e4af4fa9e80816c809542d792ee6bebb7f202.zip |
Migration to C++!
Diffstat (limited to 'src/kernel/task/sched.cpp')
-rw-r--r-- | src/kernel/task/sched.cpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/kernel/task/sched.cpp b/src/kernel/task/sched.cpp new file mode 100644 index 0000000..e773e97 --- /dev/null +++ b/src/kernel/task/sched.cpp @@ -0,0 +1,50 @@ +#include "sched.h" +#include <core/sys.h> +#include <mem/mem.h> + +// Lower priority numbers have high priority. Priorities must start at 0. +#define PRIORITIES 3 // we have 4 priority levels +#define PRIORITY(t) (t->process->privilege) //get priority for a thread + +extern thread *idle_thread; + +static thread *queue[PRIORITIES] = {0}, *last[PRIORITIES] = {0}; + +/* For internal use only. Enqueues specified thread in specified priority queue. */ +static void sched_enqueueIn(thread *t, int qid) { + t->queue_next = 0; + if (queue[qid] == 0) { + queue[qid] = last[qid] = t; + } else { + last[qid]->queue_next = t; + last[qid] = t; + } +} + +/* For internal use only. Pops a thread from specified queue, if available. */ +static thread *sched_dequeueFrom(int qid) { + if (queue[qid] == 0) return 0; + 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(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. */ +thread *sched_dequeue() { + 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; +} |