diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-22 01:34:33 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-22 01:34:33 +0100 |
| commit | 6f1aa4288c62580afb876fb9e35a45d022027d1d (patch) | |
| tree | 5017c3d2619853c3bb7ffee17525443324acc3c2 /Public/SDK/System.Core/Sources | |
| parent | d091afe4f669e5f0fe60736575ff0838c512279e (diff) | |
NewBoot: Fetching ACPI RSDPTR with success now.
This table is needed to implement AHCI.
Diffstat (limited to 'Public/SDK/System.Core/Sources')
| -rw-r--r-- | Public/SDK/System.Core/Sources/Heap.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Public/SDK/System.Core/Sources/Heap.cxx b/Public/SDK/System.Core/Sources/Heap.cxx index b3f43ad3..3803af3a 100644 --- a/Public/SDK/System.Core/Sources/Heap.cxx +++ b/Public/SDK/System.Core/Sources/Heap.cxx @@ -65,17 +65,17 @@ HeapInterface::HeapInterface() { HeapInterface::~HeapInterface() { delete this; } -void HeapInterface::Delete(HeapPtr me) noexcept { +void HeapInterface::Delete(PtrHeapType me) noexcept { CA_MUST_PASS(me); HcFreeProcessHeap(kInstanceObject, me); } -SizeType HeapInterface::Size(HeapPtr me) noexcept { +SizeType HeapInterface::Size(PtrHeapType me) noexcept { CA_MUST_PASS(me); return HcProcessHeapSize(kInstanceObject, me); } -HeapPtr HeapInterface::New(const SizeType& sz, const DWordType flags) { +PtrHeapType HeapInterface::New(const SizeType& sz, const DWordType flags) { SizeType _sz = sz; if (!_sz) ++_sz; |
