diff options
Diffstat (limited to 'Kernel/Arch/aarch64/Processor.h')
-rw-r--r-- | Kernel/Arch/aarch64/Processor.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Kernel/Arch/aarch64/Processor.h b/Kernel/Arch/aarch64/Processor.h index f79ea3ef42..b63a21a232 100644 --- a/Kernel/Arch/aarch64/Processor.h +++ b/Kernel/Arch/aarch64/Processor.h @@ -241,11 +241,6 @@ public: TODO_AARCH64(); } - u64 time_spent_idle() const - { - TODO_AARCH64(); - } - static u32 count() { TODO_AARCH64(); @@ -259,6 +254,8 @@ public: static void deferred_call_queue(Function<void()>); + u64 time_spent_idle() const; + static u32 smp_wake_n_idle_processors(u32 wake_count); [[noreturn]] static void halt(); |