Thread: Remove unused static global

This commit is contained in:
Yuri Kunde Schlesner 2014-12-22 12:07:26 -02:00
parent ce6b967f4e
commit e19dc7e6f0

View file

@ -40,7 +40,6 @@ static std::vector<Handle> thread_queue;
// Lists only ready thread ids.
static Common::ThreadQueueList<Handle> thread_ready_queue;
static Handle current_thread_handle;
static Thread* current_thread;
static const u32 INITIAL_THREAD_ID = 1; ///< The first available thread id at startup
@ -53,7 +52,6 @@ Thread* GetCurrentThread() {
/// Sets the current thread
inline void SetCurrentThread(Thread* t) {
current_thread = t;
current_thread_handle = t->GetHandle();
}
/// Saves the current CPU context