diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-02-05 11:00:44 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-02-05 11:00:44 +0530 |
commit | d1d97094bc8e173a02b922aa050cbcda19361f59 (patch) | |
tree | 70dbd969d114d05fb05d07abf3cebb93cb15d1a0 /kernel/include/mm/page_table_allocator.h | |
parent | cb90318893b2bbbfa22c1d656b3fb74765c62615 (diff) |
mm: page_table_allocator: prepare()->initialize()
Diffstat (limited to 'kernel/include/mm/page_table_allocator.h')
-rw-r--r-- | kernel/include/mm/page_table_allocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/include/mm/page_table_allocator.h b/kernel/include/mm/page_table_allocator.h index dc4deb6..4a0b0fb 100644 --- a/kernel/include/mm/page_table_allocator.h +++ b/kernel/include/mm/page_table_allocator.h @@ -25,7 +25,7 @@ namespace PageTableAllocator { uint32_t *allocate(void); -void prepare(void); +void initialize(void); } |