summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_memory_block_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-20k_page_table: implement PermissionLockedLiam1-4/+66
2023-03-22kernel: use KTypedAddress for addressesLiam1-32/+36
2022-10-19core: hle: kernel: Use result macros for new/changed code.bunnei1-1/+1
2022-10-19core: hle: kernel: k_memory_block_manager: Update.bunnei1-147/+262
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
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.
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-2/+2
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2021-05-08kernel: Eliminate variable shadowingLioncash1-17/+17
Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
2021-02-19hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others.bunnei1-30/+30
2020-05-03kernel/memory: Remove unused variables in memory_block_managerLioncash1-3/+0
Prevents unused variable warnings.
2020-04-23kernel: memory: Improve implementation of device shared memory. (#3707)bunnei1-0/+36
* kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory. * fixup! kernel: memory: Improve implementation of device shared memory.
2020-04-17core: hle: Address various feedback & code cleanup.bunnei1-3/+3
- Should be no functional changes.
2020-04-17kernel: memory: Add MemoryBlockManager class, to manage memory blocks.bunnei1-0/+190