summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-07 17:58:31 -0500
committerGravatar bunnei2015-01-07 17:58:31 -0500
commite6864a1f411d35cf2a7ccfb5d3e44b717b1e2985 (patch)
tree4388fcda5083334eee3a59cb1a18e820a0960b1a /src/core/hle/kernel/thread.cpp
parentMerge pull request #442 from lioncash/smul (diff)
parentCommon: Clean up ThreadQueueList (diff)
downloadyuzu-e6864a1f411d35cf2a7ccfb5d3e44b717b1e2985.tar.gz
yuzu-e6864a1f411d35cf2a7ccfb5d3e44b717b1e2985.tar.xz
yuzu-e6864a1f411d35cf2a7ccfb5d3e44b717b1e2985.zip
Merge pull request #431 from yuriks/thread-queue-cleanup
Common: Clean up ThreadQueueList
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 872df2d14..d76451146 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -75,7 +75,7 @@ public:
75static std::vector<Handle> thread_queue; 75static std::vector<Handle> thread_queue;
76 76
77// Lists only ready thread ids. 77// Lists only ready thread ids.
78static Common::ThreadQueueList<Handle> thread_ready_queue; 78static Common::ThreadQueueList<Handle, THREADPRIO_LOWEST+1> thread_ready_queue;
79 79
80static Handle current_thread_handle; 80static Handle current_thread_handle;
81static Thread* current_thread; 81static Thread* current_thread;