hle: kernel: k_memory_region: Minor code cleanup.
This commit is contained in:
parent
9032d21365
commit
4eac8703d2
|
@ -160,7 +160,7 @@ private:
|
||||||
KMemoryRegionAllocator& memory_region_allocator;
|
KMemoryRegionAllocator& memory_region_allocator;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
KMemoryRegionTree(KMemoryRegionAllocator& memory_region_allocator_);
|
explicit KMemoryRegionTree(KMemoryRegionAllocator& memory_region_allocator_);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
KMemoryRegion* FindModifiable(u64 address) {
|
KMemoryRegion* FindModifiable(u64 address) {
|
||||||
|
@ -328,14 +328,8 @@ class KMemoryRegionAllocator final : NonCopyable {
|
||||||
public:
|
public:
|
||||||
static constexpr size_t MaxMemoryRegions = 200;
|
static constexpr size_t MaxMemoryRegions = 200;
|
||||||
|
|
||||||
private:
|
|
||||||
std::array<KMemoryRegion, MaxMemoryRegions> region_heap{};
|
|
||||||
size_t num_regions{};
|
|
||||||
|
|
||||||
public:
|
|
||||||
constexpr KMemoryRegionAllocator() = default;
|
constexpr KMemoryRegionAllocator() = default;
|
||||||
|
|
||||||
public:
|
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
KMemoryRegion* Allocate(Args&&... args) {
|
KMemoryRegion* Allocate(Args&&... args) {
|
||||||
// Ensure we stay within the bounds of our heap.
|
// Ensure we stay within the bounds of our heap.
|
||||||
|
@ -347,6 +341,10 @@ public:
|
||||||
|
|
||||||
return region;
|
return region;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::array<KMemoryRegion, MaxMemoryRegions> region_heap{};
|
||||||
|
size_t num_regions{};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Kernel
|
} // namespace Kernel
|
||||||
|
|
Reference in New Issue