summaryrefslogtreecommitdiff
path: root/os/thread.cpp
blob: 432727a10dd2000b3eff383a409d8bcf3abb88a7 (plain)
1
2
3
4
5
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;