summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar Liam2023-11-28 14:30:39 -0500
committerGravatar Liam2023-12-04 10:37:16 -0500
commit45c87c7e6e841c11def43e5ab25160006dab6d77 (patch)
tree04a3ea0bd8c07389e17741aa28615e3b32ace2f7 /src/core/hle/kernel/kernel.h
parentMerge pull request #12235 from liamwhite/flip-clip (diff)
downloadyuzu-45c87c7e6e841c11def43e5ab25160006dab6d77.tar.gz
yuzu-45c87c7e6e841c11def43e5ab25160006dab6d77.tar.xz
yuzu-45c87c7e6e841c11def43e5ab25160006dab6d77.zip
core: refactor emulated cpu core activation
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index d8086c0ea..69b5bbd6c 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -104,9 +104,6 @@ public:
104 /// Resets the kernel to a clean slate for use. 104 /// Resets the kernel to a clean slate for use.
105 void Initialize(); 105 void Initialize();
106 106
107 /// Initializes the CPU cores.
108 void InitializeCores();
109
110 /// Clears all resources in use by the kernel instance. 107 /// Clears all resources in use by the kernel instance.
111 void Shutdown(); 108 void Shutdown();
112 109
@@ -181,10 +178,6 @@ public:
181 178
182 const KAutoObjectWithListContainer& ObjectListContainer() const; 179 const KAutoObjectWithListContainer& ObjectListContainer() const;
183 180
184 void InvalidateAllInstructionCaches();
185
186 void InvalidateCpuInstructionCacheRange(KProcessAddress addr, std::size_t size);
187
188 /// Registers all kernel objects with the global emulation state, this is purely for tracking 181 /// Registers all kernel objects with the global emulation state, this is purely for tracking
189 /// leaks after emulation has been shutdown. 182 /// leaks after emulation has been shutdown.
190 void RegisterKernelObject(KAutoObject* object); 183 void RegisterKernelObject(KAutoObject* object);