summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_memory_block_manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
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