diff options
Diffstat (limited to 'src/core/hle/kernel/init')
| -rw-r--r-- | src/core/hle/kernel/init/init_slab_setup.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/init/init_slab_setup.cpp b/src/core/hle/kernel/init/init_slab_setup.cpp index 571acf4b2..abdb5639f 100644 --- a/src/core/hle/kernel/init/init_slab_setup.cpp +++ b/src/core/hle/kernel/init/init_slab_setup.cpp | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include "core/hle/kernel/k_event_info.h" | 16 | #include "core/hle/kernel/k_event_info.h" |
| 17 | #include "core/hle/kernel/k_memory_layout.h" | 17 | #include "core/hle/kernel/k_memory_layout.h" |
| 18 | #include "core/hle/kernel/k_memory_manager.h" | 18 | #include "core/hle/kernel/k_memory_manager.h" |
| 19 | #include "core/hle/kernel/k_object_name.h" | ||
| 19 | #include "core/hle/kernel/k_page_buffer.h" | 20 | #include "core/hle/kernel/k_page_buffer.h" |
| 20 | #include "core/hle/kernel/k_port.h" | 21 | #include "core/hle/kernel/k_port.h" |
| 21 | #include "core/hle/kernel/k_process.h" | 22 | #include "core/hle/kernel/k_process.h" |
| @@ -49,6 +50,7 @@ namespace Kernel::Init { | |||
| 49 | HANDLER(KThreadLocalPage, \ | 50 | HANDLER(KThreadLocalPage, \ |
| 50 | (SLAB_COUNT(KProcess) + (SLAB_COUNT(KProcess) + SLAB_COUNT(KThread)) / 8), \ | 51 | (SLAB_COUNT(KProcess) + (SLAB_COUNT(KProcess) + SLAB_COUNT(KThread)) / 8), \ |
| 51 | ##__VA_ARGS__) \ | 52 | ##__VA_ARGS__) \ |
| 53 | HANDLER(KObjectName, (SLAB_COUNT(KObjectName)), ##__VA_ARGS__) \ | ||
| 52 | HANDLER(KResourceLimit, (SLAB_COUNT(KResourceLimit)), ##__VA_ARGS__) \ | 54 | HANDLER(KResourceLimit, (SLAB_COUNT(KResourceLimit)), ##__VA_ARGS__) \ |
| 53 | HANDLER(KEventInfo, (SLAB_COUNT(KThread) + SLAB_COUNT(KDebug)), ##__VA_ARGS__) \ | 55 | HANDLER(KEventInfo, (SLAB_COUNT(KThread) + SLAB_COUNT(KDebug)), ##__VA_ARGS__) \ |
| 54 | HANDLER(KDebug, (SLAB_COUNT(KDebug)), ##__VA_ARGS__) \ | 56 | HANDLER(KDebug, (SLAB_COUNT(KDebug)), ##__VA_ARGS__) \ |