summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-20 21:42:29 +0200
committerSubv <subv2112@gmail.com>2018-04-21 04:04:32 +0200
commit5fdfbfe25adafd2734a19fe94cccc58993cb12e7 (patch)
treea4940a8231d08c5b96ce2d629acc04948ab1af3a /src/core/hle/kernel/thread.h
parentKernel: Properly implemented svcWaitProcessWideKey and svcSignalProcessWideKey (diff)
downloadyuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar.gz
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar.bz2
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar.lz
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar.xz
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.tar.zst
yuzu-5fdfbfe25adafd2734a19fe94cccc58993cb12e7.zip
Diffstat (limited to '')
-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 {
namespace Kernel {
-class Mutex;
class Process;
class Thread final : public WaitObject {
@@ -206,12 +205,6 @@ public:
VAddr tls_address; ///< Virtual address of the Thread Local Storage of the thread
- /// Mutexes currently held by this thread, which will be released when it exits.
- boost::container::flat_set<SharedPtr<Mutex>> held_mutexes;
-
- /// Mutexes that this thread is currently waiting for.
- boost::container::flat_set<SharedPtr<Mutex>> pending_mutexes;
-
SharedPtr<Process> owner_process; ///< Process that owns this thread
/// Objects that the thread is waiting on, in the same order as they were