summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_process.h
diff options
context:
space:
mode:
authorAmeer J <52414509+ameerj@users.noreply.github.com>2021-10-04 06:09:08 +0200
committerGitHub <noreply@github.com>2021-10-04 06:09:08 +0200
commit01f79d638fbbca54280ab9b5840e5a483b7ceb69 (patch)
tree6520b5f70f2d3132031610e39d6d7c50aa268838 /src/core/hle/kernel/k_process.h
parentMerge pull request #7122 from Morph1984/update-qt (diff)
parentFix KShareMemory object leak (diff)
downloadyuzu-01f79d638fbbca54280ab9b5840e5a483b7ceb69.tar
yuzu-01f79d638fbbca54280ab9b5840e5a483b7ceb69.tar.gz
yuzu-01f79d638fbbca54280ab9b5840e5a483b7ceb69.tar.bz2
yuzu-01f79d638fbbca54280ab9b5840e5a483b7ceb69.tar.lz
yuzu-01f79d638fbbca54280ab9b5840e5a483b7ceb69.tar.xz
yuzu-01f79d638fbbca54280ab9b5840e5a483b7ceb69.tar.zst
yuzu-01f79d638fbbca54280ab9b5840e5a483b7ceb69.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_process.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_process.h b/src/core/hle/kernel/k_process.h
index a03c074fb..1a53e2be7 100644
--- a/src/core/hle/kernel/k_process.h
+++ b/src/core/hle/kernel/k_process.h
@@ -34,6 +34,7 @@ class KernelCore;
class KPageTable;
class KResourceLimit;
class KThread;
+class KSharedMemoryInfo;
class TLSPage;
struct CodeSet;
@@ -448,6 +449,9 @@ private:
/// List of threads that are running with this process as their owner.
std::list<const KThread*> thread_list;
+ /// List of shared memory that are running with this process as their owner.
+ std::list<KSharedMemoryInfo*> shared_memory_list;
+
/// Address of the top of the main thread's stack
VAddr main_thread_stack_top{};