Kernel/aarch64: Correctly implement Processor::is_initialized()

This commit is contained in:
Timon Kruiper 2022-12-22 14:07:29 +01:00 committed by Andrew Kaster
commit 1cc06b9985
Notes: sideshowbarker 2024-07-17 02:28:28 +09:00

View file

@ -94,7 +94,7 @@ public:
ALWAYS_INLINE static bool is_initialized()
{
return false;
return g_current_processor != nullptr;
}
static void flush_tlb_local(VirtualAddress vaddr, size_t page_count);