diff options
| author | 2018-04-20 14:42:29 -0500 | |
|---|---|---|
| committer | 2018-04-20 21:04:32 -0500 | |
| commit | 5fdfbfe25adafd2734a19fe94cccc58993cb12e7 (patch) | |
| tree | a4940a8231d08c5b96ce2d629acc04948ab1af3a /src/core/hle/kernel/thread.h | |
| parent | Kernel: Properly implemented svcWaitProcessWideKey and svcSignalProcessWideKey (diff) | |
| download | yuzu-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.h | 7 |
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 | ||
| 56 | namespace Kernel { | 56 | namespace Kernel { |
| 57 | 57 | ||
| 58 | class Mutex; | ||
| 59 | class Process; | 58 | class Process; |
| 60 | 59 | ||
| 61 | class Thread final : public WaitObject { | 60 | class 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 |