diff options
| author | 2015-01-07 17:58:31 -0500 | |
|---|---|---|
| committer | 2015-01-07 17:58:31 -0500 | |
| commit | e6864a1f411d35cf2a7ccfb5d3e44b717b1e2985 (patch) | |
| tree | 4388fcda5083334eee3a59cb1a18e820a0960b1a /src/core/hle/kernel/thread.cpp | |
| parent | Merge pull request #442 from lioncash/smul (diff) | |
| parent | Common: Clean up ThreadQueueList (diff) | |
| download | yuzu-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.cpp | 2 |
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: | |||
| 75 | static std::vector<Handle> thread_queue; | 75 | static std::vector<Handle> thread_queue; |
| 76 | 76 | ||
| 77 | // Lists only ready thread ids. | 77 | // Lists only ready thread ids. |
| 78 | static Common::ThreadQueueList<Handle> thread_ready_queue; | 78 | static Common::ThreadQueueList<Handle, THREADPRIO_LOWEST+1> thread_ready_queue; |
| 79 | 79 | ||
| 80 | static Handle current_thread_handle; | 80 | static Handle current_thread_handle; |
| 81 | static Thread* current_thread; | 81 | static Thread* current_thread; |