summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/memory/slab_heap.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3881 from lioncash/mem-warningbunnei2020-05-051-1/+0
|\ | | | | kernel/memory: Resolve several compiler warnings
| * kernel/memory: Remove unused includesLioncash2020-05-031-1/+0
| | | | | | | | | | Prevents header churn and needing to recompile these files if these headers are ever changed in the future.
* | kernel/memory: Amend potential encoding warningsLioncash2020-05-031-2/+2
|/ | | | | | | While èis generally representable in some language encodings, in some it isn't and will result in compilation warnings occurring. To remain friendly with other language's codepages on Windows, we normalize it to an ASCII e.
* memory/slab_heap: Make use of static_cast over reinterpret_castLioncash2020-04-181-2/+2
| | | | | Casting from void* with static_cast is permitted by the standard, so we can just make use of that instead.
* memory: Add copyright notice for Atmosphere where applicable.bunnei2020-04-171-0/+3
|
* kernel: memory: Add SlabHeap class, for managing memory heaps.bunnei2020-04-171-0/+161
- This will be used for TLS pages, among other things.