kern: alleviate a little KPort pressure.

This commit is contained in:
Michael Scire 2021-02-23 14:31:24 -08:00
parent 287f4e6fa1
commit eb50e99748
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ namespace ams::kern::init {
constexpr size_t SlabCountKThread = 800;
constexpr size_t SlabCountKEvent = 700;
constexpr size_t SlabCountKInterruptEvent = 100;
constexpr size_t SlabCountKPort = 256;
constexpr size_t SlabCountKPort = 256 + 0x20 /* Extra 0x20 ports over Nintendo for homebrew. */;
constexpr size_t SlabCountKSharedMemory = 80;
constexpr size_t SlabCountKTransferMemory = 200;
constexpr size_t SlabCountKCodeMemory = 10;