1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:37:34 +00:00

Kernel/aarch64: Rename Processor::install to Processor::early_initialize

Also pass the cpu number to Processor::initialize. This way the init
code can be shared between the x86_64 and aarch64 build.
This commit is contained in:
Timon Kruiper 2023-03-26 17:28:07 +02:00 committed by Andrew Kaster
parent 14d78e10d1
commit 05b9eb7feb
3 changed files with 6 additions and 6 deletions

View file

@ -45,8 +45,8 @@ class Processor {
public:
Processor() = default;
void install(u32 cpu);
void initialize();
void early_initialize(u32 cpu);
void initialize(u32 cpu);
template<typename T>
T* get_specific()