summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar bunnei2019-04-15 21:42:16 -0400
committerGravatar GitHub2019-04-15 21:42:16 -0400
commita7c3275b8b97eac22926786f6e78a474c1c3f828 (patch)
tree937cc401ac6fb489b5b836d24e044678d13a4266 /src/core/hle/kernel/thread.h
parentMerge pull request #2399 from FernandoS27/fermi-fix (diff)
parentkernel/thread: Remove BoostPriority() (diff)
downloadyuzu-a7c3275b8b97eac22926786f6e78a474c1c3f828.tar.gz
yuzu-a7c3275b8b97eac22926786f6e78a474c1c3f828.tar.xz
yuzu-a7c3275b8b97eac22926786f6e78a474c1c3f828.zip
Merge pull request #2398 from lioncash/boost
kernel/thread: Remove BoostPriority()
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 83c83e45a..32026d7f0 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -136,12 +136,6 @@ public:
136 */ 136 */
137 void SetPriority(u32 priority); 137 void SetPriority(u32 priority);
138 138
139 /**
140 * Temporarily boosts the thread's priority until the next time it is scheduled
141 * @param priority The new priority
142 */
143 void BoostPriority(u32 priority);
144
145 /// Adds a thread to the list of threads that are waiting for a lock held by this thread. 139 /// Adds a thread to the list of threads that are waiting for a lock held by this thread.
146 void AddMutexWaiter(SharedPtr<Thread> thread); 140 void AddMutexWaiter(SharedPtr<Thread> thread);
147 141