diff --git a/Kernel/Arch/aarch64/Processor.h b/Kernel/Arch/aarch64/Processor.h index c26963ef53..88ba48db94 100644 --- a/Kernel/Arch/aarch64/Processor.h +++ b/Kernel/Arch/aarch64/Processor.h @@ -60,6 +60,11 @@ public: return 0; } + ALWAYS_INLINE static Thread* idle_thread() + { + return nullptr; + } + ALWAYS_INLINE static Processor& current() { VERIFY_NOT_REACHED(); } static void deferred_call_queue(Function /* callback */) { }