summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorGravatar Subv2018-04-20 14:42:29 -0500
committerGravatar Subv2018-04-20 21:04:32 -0500
commit5fdfbfe25adafd2734a19fe94cccc58993cb12e7 (patch)
treea4940a8231d08c5b96ce2d629acc04948ab1af3a /src/core/hle/kernel/thread.h
parentKernel: Properly implemented svcWaitProcessWideKey and svcSignalProcessWideKey (diff)
downloadyuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar.gz
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar.xz
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.zip
Kernel: Remove old and unused Mutex code.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index a3a6e6a64..74d5904b8 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -55,7 +55,6 @@ enum class ThreadWakeupReason {
55 55
56namespace Kernel { 56namespace Kernel {
57 57
58class Mutex;
59class Process; 58class Process;
60 59
61class Thread final : public WaitObject { 60class Thread final : public WaitObject {
@@ -206,12 +205,6 @@ public:
206 205
207 VAddr tls_address; ///< Virtual address of the Thread Local Storage of the thread 206 VAddr tls_address; ///< Virtual address of the Thread Local Storage of the thread
208 207
209 /// Mutexes currently held by this thread, which will be released when it exits.
210 boost::container::flat_set<SharedPtr<Mutex>> held_mutexes;
211
212 /// Mutexes that this thread is currently waiting for.
213 boost::container::flat_set<SharedPtr<Mutex>> pending_mutexes;
214
215 SharedPtr<Process> owner_process; ///< Process that owns this thread 208 SharedPtr<Process> owner_process; ///< Process that owns this thread
216 209
217 /// Objects that the thread is waiting on, in the same order as they were 210 /// Objects that the thread is waiting on, in the same order as they were