diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-21 21:25:14 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-21 21:25:14 +0100 |
| commit | 3b7964eb2f165e77334a92ca907d769bede17aef (patch) | |
| tree | 7c27aafd4c857fa4d7be9c18c387173c1066ea9d /dev/kernel/HALKit | |
| parent | c7e9d01d331d966a92efdc7ad6fb76ac96d0943e (diff) | |
fix: kernel{aarch64}: it now builds without issue because of a fix in the bitmap manager.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/HALKit')
| -rw-r--r-- | dev/kernel/HALKit/ARM64/Paging.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/kernel/HALKit/ARM64/Paging.h b/dev/kernel/HALKit/ARM64/Paging.h index 5001871b..7a022141 100644 --- a/dev/kernel/HALKit/ARM64/Paging.h +++ b/dev/kernel/HALKit/ARM64/Paging.h @@ -93,7 +93,7 @@ struct PDE_4KB final { PTE_4KB ALIGN(kPageAlign) fEntries[kPageMax]; }; -auto mm_alloc_bitmap(Boolean wr, Boolean user, SizeT size, Bool is_page) -> VoidPtr; +auto mm_alloc_bitmap(Boolean wr, Boolean user, SizeT size, Bool is_page, SizeT pad = 0) -> VoidPtr; auto mm_free_bitmap(VoidPtr page_ptr) -> Bool; } // namespace Kernel::HAL |
