summaryrefslogtreecommitdiff
path: root/src/kernel/task/timer.c
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2010-08-10 20:59:01 +0200
committerAlexis211 <alexis211@gmail.com>2010-08-10 20:59:01 +0200
commitb2c444834ef0a384587a6a7d196eeb073825eac2 (patch)
treeb56bf8ecb166153c45101a3476480e485d62ea5f /src/kernel/task/timer.c
parentf81bf65484fa8c81a1886f456c71f1e6eebe84e9 (diff)
downloadTCE-b2c444834ef0a384587a6a7d196eeb073825eac2.tar.gz
TCE-b2c444834ef0a384587a6a7d196eeb073825eac2.zip
thread_sleep functions redone.
Diffstat (limited to 'src/kernel/task/timer.c')
-rw-r--r--src/kernel/task/timer.c86
1 files changed, 69 insertions, 17 deletions
diff --git a/src/kernel/task/timer.c b/src/kernel/task/timer.c
index 1ec1523..643ca54 100644
--- a/src/kernel/task/timer.c
+++ b/src/kernel/task/timer.c
@@ -1,27 +1,13 @@
#include "timer.h"
+#include "task.h"
#include "idt.h"
#include <core/sys.h>
#include <core/monitor.h>
static uint32_t tick = 0, frequency = 0, uptime = 0;
-/* Called when IRQ0 fires. Updates the uptime variable.
- DOES NOT provoke a task switch. The task switch is called in idt.c (IRQ handler). */
-void timer_callback(struct registers *regs) {
- tick++;
- if (tick == frequency) {
- uptime++;
- tick = 0;
- }
-}
-
-/* Accessor function to get machine uptime. */
-uint32_t timer_uptime() { return uptime; }
-
-/* Accessor function, gets uptime in miliseconds. */
-uint32_t timer_time() {
- return (uptime * 1000) + (tick * 1000 / frequency);
-}
+static void timer_callback(struct registers *regs);
+static void timer_wakeUpSleepingThreads();
/* Called by kmain. Sets up the PIT and the IRQ0 handler. */
void timer_init(uint32_t freq) {
@@ -39,3 +25,69 @@ void timer_init(uint32_t freq) {
monitor_write("[PIT] ");
}
+
+/* Accessor function to get machine uptime. */
+uint32_t timer_uptime() { return uptime; }
+
+/* Accessor function, gets uptime in miliseconds. */
+uint32_t timer_time() {
+ return (uptime * 1000) + (tick * 1000 / frequency);
+}
+
+/* Called when IRQ0 fires. Updates the uptime variable.
+ DOES NOT provoke a task switch. The task switch is called in idt.c (IRQ handler). */
+void timer_callback(struct registers *regs) {
+ tick++;
+ if (tick == frequency) {
+ uptime++;
+ tick = 0;
+ }
+ timer_wakeUpSleepingThreads();
+}
+
+//************************************************ SLEEP FUNCTIONS *****************
+
+static struct sleeping_thread {
+ uint32_t wakeup_time;
+ struct thread *thread;
+ struct sleeping_thread *next;
+} *sleeping_threads = 0;
+
+/* Makes the current thread sleep. */
+void thread_sleep(uint32_t msecs) {
+ if (current_thread == 0) return;
+ // Create the sleeping_thread structure
+ struct sleeping_thread *sf = kmalloc(sizeof(struct sleeping_thread)), *tmp;
+ sf->wakeup_time = timer_time() + msecs;
+ sf->thread = current_thread;
+ //Insert it at the right place
+ if (sleeping_threads == 0) {
+ sleeping_threads = sf;
+ sf->next = 0;
+ } else if (sleeping_threads->wakeup_time >= sf->wakeup_time) {
+ sf->next = sleeping_threads;
+ sleeping_threads = sf;
+ } else {
+ tmp = sleeping_threads;
+ while (1) {
+ if (tmp->next == 0 || tmp->next->wakeup_time >= sf->wakeup_time) {
+ sf->next = tmp->next;
+ tmp->next = sf;
+ break;
+ }
+ tmp = tmp->next;
+ }
+ }
+
+ thread_goInactive();
+}
+
+void timer_wakeUpSleepingThreads() {
+ uint32_t time = timer_time();
+ while (sleeping_threads != 0 && sleeping_threads->wakeup_time <= time) {
+ struct sleeping_thread *tmp = sleeping_threads;
+ thread_wakeUp(tmp->thread);
+ sleeping_threads = tmp->next;
+ kfree(tmp);
+ }
+}