summaryrefslogtreecommitdiff
path: root/os/thread.cpp
blob: 0f2437df045e15a5fdd41478d0f3ac67b821d9e1 (plain)
1
2
3
4
5
#include "thread.h"

List<Thread> Thread::ready_queue __attribute__ ((init_priority (1000)));
Thread Thread::main_thread __attribute__ ((init_priority (1001)));
Thread* Thread::active_thread = &Thread::main_thread;