summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2021-04-09 23:16:13 -0700
committerGravatar bunnei2021-05-05 16:40:51 -0700
commitcfa7b9256371e689e51ab17fd1e564c556889e1a (patch)
tree91a02f61893336d72ad083c966d899b478a748f0 /src/core/hle/kernel/kernel.cpp
parenthle: kernel: Refactor several threads/events/sharedmemory to use slab heaps. (diff)
downloadyuzu-cfa7b9256371e689e51ab17fd1e564c556889e1a.tar.gz
yuzu-cfa7b9256371e689e51ab17fd1e564c556889e1a.tar.xz
yuzu-cfa7b9256371e689e51ab17fd1e564c556889e1a.zip
hle: kernel: Move slab heaps to their own container.
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r--src/core/hle/kernel/kernel.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 1b7ba39f4..472c71cf1 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -692,6 +692,7 @@ void KernelCore::SetMulticore(bool is_multicore) {
692} 692}
693 693
694void KernelCore::Initialize() { 694void KernelCore::Initialize() {
695 slab_heap_container = std::make_unique<SlabHeapContainer>();
695 impl->Initialize(*this); 696 impl->Initialize(*this);
696} 697}
697 698