summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar Subv2018-04-20 14:45:52 -0500
committerGravatar Subv2018-04-20 21:04:33 -0500
commitbe155f4d9d410886853c25ffa032ce41a7428337 (patch)
tree0cdfd46181a5639339cbbf7d22ed31d9c1d8486b /src/core/hle/kernel/thread.h
parentKernel: Remove old and unused Mutex code. (diff)
downloadyuzu-be155f4d9d410886853c25ffa032ce41a7428337.tar.gz
yuzu-be155f4d9d410886853c25ffa032ce41a7428337.tar.xz
yuzu-be155f4d9d410886853c25ffa032ce41a7428337.zip
Kernel: Remove unused ConditionVariable class.
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 74d5904b8..ee13d20f1 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -104,12 +104,6 @@ public:
104 void SetPriority(u32 priority); 104 void SetPriority(u32 priority);
105 105
106 /** 106 /**
107 * Boost's a thread's priority to the best priority among the thread's held mutexes.
108 * This prevents priority inversion via priority inheritance.
109 */
110 void UpdatePriority();
111
112 /**
113 * Temporarily boosts the thread's priority until the next time it is scheduled 107 * Temporarily boosts the thread's priority until the next time it is scheduled
114 * @param priority The new priority 108 * @param priority The new priority
115 */ 109 */