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