mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 10:18:15 +09:00
Kernel: Mark a few more things as READONLY_AFTER_INIT
This commit is contained in:
parent
18f8d08b98
commit
8642c831cf
Notes:
sideshowbarker
2024-07-18 08:28:35 +09:00
Author: https://github.com/gunnarbeutner
Commit: 8642c831cf
Pull-request: https://github.com/SerenityOS/serenity/pull/8966
1 changed files with 6 additions and 6 deletions
|
@ -111,13 +111,13 @@ READONLY_AFTER_INIT PhysicalAddress start_of_prekernel_image;
|
|||
READONLY_AFTER_INIT PhysicalAddress end_of_prekernel_image;
|
||||
READONLY_AFTER_INIT FlatPtr kernel_base;
|
||||
#if ARCH(X86_64)
|
||||
PhysicalAddress boot_pml4t;
|
||||
READONLY_AFTER_INIT PhysicalAddress boot_pml4t;
|
||||
#endif
|
||||
PhysicalAddress boot_pdpt;
|
||||
PhysicalAddress boot_pd0;
|
||||
PhysicalAddress boot_pd_kernel;
|
||||
PageTableEntry* boot_pd_kernel_pt1023;
|
||||
const char* kernel_cmdline;
|
||||
READONLY_AFTER_INIT PhysicalAddress boot_pdpt;
|
||||
READONLY_AFTER_INIT PhysicalAddress boot_pd0;
|
||||
READONLY_AFTER_INIT PhysicalAddress boot_pd_kernel;
|
||||
READONLY_AFTER_INIT PageTableEntry* boot_pd_kernel_pt1023;
|
||||
READONLY_AFTER_INIT const char* kernel_cmdline;
|
||||
}
|
||||
|
||||
extern "C" [[noreturn]] UNMAP_AFTER_INIT void init(BootInfo const& boot_info)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue