diff options
author | Anton Kling <anton@kling.gg> | 2023-10-30 21:47:59 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-30 21:49:48 +0100 |
commit | ca76600acc8bf7a02346efa5bd8f17072210ec01 (patch) | |
tree | 4ebf2fd205701d1582afb33420028621cab6c674 /includes | |
parent | 5a339a9b7b5cdcee3629b14f1b6a58ac4ab60fce (diff) |
Cleanup of things that did not get formatted or not included in old commits
Diffstat (limited to 'includes')
-rw-r--r-- | includes/mmu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/mmu.h b/includes/mmu.h index 39c951b..1df337d 100644 --- a/includes/mmu.h +++ b/includes/mmu.h @@ -31,7 +31,7 @@ typedef struct PageDirectory { uint32_t physical_address; } PageDirectory; -int mmu_allocate_region(void *ptr, size_t n, mmu_flags flags); +int mmu_allocate_region(void *ptr, size_t n, mmu_flags flags, PageDirectory *pd); void mmu_allocate_shared_kernel_region(void *rc, size_t n); void *mmu_find_unallocated_virtual_range(void *addr, size_t length); void mmu_remove_virtual_physical_address_mapping(void *ptr, size_t length); |