mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
Kernel: Add idle_thread() to aarch64 Processor.h
This commit is contained in:
parent
026efae8a8
commit
d50e237281
1 changed files with 5 additions and 0 deletions
|
@ -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 */) { }
|
||||
|
|
Loading…
Add table
Reference in a new issue