diff options
author | Timon Kruiper <timonkruiper@gmail.com> | 2022-05-09 13:33:35 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-12 23:14:05 +0200 |
commit | e80d8d697c0464d1cd86dccf183998615b9f43fc (patch) | |
tree | 9223658cd252ad8714c5d8f5f28173f268fa3526 /Kernel/Arch/aarch64/Processor.h | |
parent | acc9be9f7d6d65278fa912ca5d9af5762e91eb70 (diff) | |
download | serenity-e80d8d697c0464d1cd86dccf183998615b9f43fc.zip |
Kernel: Replace Prekernel::halt with Processor::halt in aarch64 build
This allows us to get rid of one more Prekernel file.
Diffstat (limited to 'Kernel/Arch/aarch64/Processor.h')
-rw-r--r-- | Kernel/Arch/aarch64/Processor.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Kernel/Arch/aarch64/Processor.h b/Kernel/Arch/aarch64/Processor.h index 17393471cf..01a1d5c134 100644 --- a/Kernel/Arch/aarch64/Processor.h +++ b/Kernel/Arch/aarch64/Processor.h @@ -143,10 +143,7 @@ public: VERIFY_NOT_REACHED(); } - [[noreturn]] static void halt() - { - for (;;) { } - } + [[noreturn]] static void halt(); }; } |