mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +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:
parent
b9944ca905
commit
b046c82f75
1 changed files with 0 additions and 1 deletions
|
@ -66,7 +66,6 @@ public:
|
|||
|
||||
ALWAYS_INLINE static bool is_initialized()
|
||||
{
|
||||
VERIFY_NOT_REACHED();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue