Kernel: Add idle_thread() to aarch64 Processor.h

This commit is contained in:
James Mintram 2022-04-02 23:45:37 +01:00 committed by Brian Gianforcaro
commit d50e237281
Notes: sideshowbarker 2024-07-17 14:35:58 +09:00

View file

@ -60,6 +60,11 @@ public:
return 0; return 0;
} }
ALWAYS_INLINE static Thread* idle_thread()
{
return nullptr;
}
ALWAYS_INLINE static Processor& current() { VERIFY_NOT_REACHED(); } ALWAYS_INLINE static Processor& current() { VERIFY_NOT_REACHED(); }
static void deferred_call_queue(Function<void()> /* callback */) { } static void deferred_call_queue(Function<void()> /* callback */) { }