diff options
Diffstat (limited to 'Kernel/Arch/aarch64')
-rw-r--r-- | Kernel/Arch/aarch64/Processor.h | 5 |
1 files changed, 5 insertions, 0 deletions
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<void()> /* callback */) { } |