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
parent 026efae8a8
commit d50e237281

View file

@ -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 */) { }