diff options
author | James Mintram <me@jamesrm.com> | 2022-04-02 23:45:37 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-04-02 19:34:20 -0700 |
commit | d50e237281cffda2cffe05935a3134bbbb763c12 (patch) | |
tree | 1d810cc2818bc5b77813387f99ad238c03543936 /Kernel/Arch/aarch64 | |
parent | 026efae8a81bb67f9c35c02b7d1d811bb00bcb8d (diff) | |
download | serenity-d50e237281cffda2cffe05935a3134bbbb763c12.zip |
Kernel: Add idle_thread() to aarch64 Processor.h
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 */) { } |