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:
parent
14d78e10d1
commit
05b9eb7feb
3 changed files with 6 additions and 6 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue