1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:47:45 +00:00

Kernel: Replace Prekernel::halt with Processor::halt in aarch64 build

This allows us to get rid of one more Prekernel file.
This commit is contained in:
Timon Kruiper 2022-05-09 13:33:35 +02:00 committed by Linus Groh
parent acc9be9f7d
commit e80d8d697c
7 changed files with 10 additions and 30 deletions

View file

@ -143,10 +143,7 @@ public:
VERIFY_NOT_REACHED();
}
[[noreturn]] static void halt()
{
for (;;) { }
}
[[noreturn]] static void halt();
};
}