diff options
author | Subv <subv2112@gmail.com> | 2015-05-11 16:15:10 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-05-11 16:15:10 +0200 |
commit | 41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57 (patch) | |
tree | b9500ee328f5b918edca38251878c4f346a30807 /src/core/hle/kernel/thread.h | |
parent | Merge pull request #740 from yuriks/gsp-shmem (diff) | |
download | yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.gz yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.bz2 yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.lz yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.xz yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.tar.zst yuzu-41f74a16fd55934f747f6f7e1f7a6d4d6a3d4e57.zip |
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 6891c8c2f..c5f4043ca 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -45,6 +45,7 @@ enum ThreadStatus { namespace Kernel { class Mutex; +class Process; class Thread final : public WaitObject { public: @@ -161,6 +162,7 @@ public: /// Mutexes currently held by this thread, which will be released when it exits. boost::container::flat_set<SharedPtr<Mutex>> held_mutexes; + SharedPtr<Process> owner_process; ///< Process that owns this thread std::vector<SharedPtr<WaitObject>> wait_objects; ///< Objects that the thread is waiting on VAddr wait_address; ///< If waiting on an AddressArbiter, this is the arbitration address bool wait_all; ///< True if the thread is waiting on all objects before resuming |