1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

Kernel: Let Processor::is_initialized() of aarch64 return false

When calling dbgln(), the formatting code in AK/Format.h calls
Processor::is_initialized() to determine whether to add some text about
the current processor to the debug output. Instead of crashing, we just
return false, such that we can use dbgln() etc in the aarch64 Kernel.
This commit is contained in:
Timon Kruiper 2022-05-02 18:53:44 +02:00 committed by Linus Groh
parent b9944ca905
commit b046c82f75

View file

@ -66,7 +66,6 @@ public:
ALWAYS_INLINE static bool is_initialized()
{
VERIFY_NOT_REACHED();
return false;
}