summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/init (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-06-14common: Change semantics of UNREACHABLE to unconditionally crashLiam1-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph2-6/+4
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2022-03-15core: hle: kernel: init_slab_setup: Move CalculateSlabHeapGapSize to global namespace.bunnei1-6/+6
2022-03-15core: hle: kernel: Update init_slab_heap, use device memory, and add KThreadLocalPage and KPageBuffer.bunnei2-23/+83
- Refreshes our slab initialization code to latest known behavior. - Moves all guest kernel slabs into emulated device memory. - Adds KThreadLocalPage and KPageBuffer, which we will use for accurate TLS management.
2021-12-05kernel: svc: Implement Map/UnmapProcessMemory and Create/ControlCodeMemoryitsmeft241-0/+2
Used by Skyline modding framework
2021-11-04core: Remove unused includesameerj1-2/+0
2021-05-21hle: kernel: Use host memory allocations for KSlabMemory.bunnei1-1/+9
- There are some issues with the current workaround, we will just use host memory until we have a complete kernel memory implementation.
2021-05-06hle: kernel: Move slab resource counts to Kernel.bunnei2-32/+31
2021-05-06fixup! hle: kernel: Add initial impl. of slab setup.bunnei1-6/+2
2021-05-06fixup! hle: kernel: Add initial impl. of slab setup.bunnei1-8/+8
2021-05-06hle: kernel: Rename Process to KProcess.bunnei2-5/+5
2021-05-06hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject.bunnei1-1/+3
2021-05-06hle: kernel: Migrate KResourceLimit to KAutoObject.bunnei1-2/+4
2021-05-06hle: kernel: Migrate KTransferMemory to KAutoObject.bunnei1-0/+2
2021-05-06hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.bunnei1-1/+3
2021-05-06hle: kernel: Migrate KEvent to KAutoObject.bunnei1-0/+2
2021-05-06hle: kernel: Migrate KSharedMemory to KAutoObject.bunnei1-1/+3
2021-05-06hle: kernel: Migrate KProcess to KAutoObject.bunnei2-4/+7
2021-05-06hle: kernel: Add initial impl. of slab setup.bunnei2-0/+225