summaryrefslogtreecommitdiff
path: root/os/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'os/thread.cpp')
-rw-r--r--os/thread.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/thread.cpp b/os/thread.cpp
index 426fffd..0f2437d 100644
--- a/os/thread.cpp
+++ b/os/thread.cpp
@@ -1,4 +1,5 @@
#include "thread.h"
-Thread Thread::main_thread __attribute__ ((init_priority (1000)));
+List<Thread> Thread::ready_queue __attribute__ ((init_priority (1000)));
+Thread Thread::main_thread __attribute__ ((init_priority (1001)));
Thread* Thread::active_thread = &Thread::main_thread;