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

Kernel: Fix all linker errors for Aarch64 build

This commit is contained in:
James Mintram 2021-10-13 19:21:24 +01:00 committed by Linus Groh
parent ab70268d61
commit ceb3328877
3 changed files with 80 additions and 0 deletions

View file

@ -61,6 +61,11 @@ public:
ALWAYS_INLINE static Processor& current() { return *((Processor*)0); }
static void deferred_call_queue(Function<void()> /* callback */) { }
[[noreturn]] static void halt()
{
for (;;) { }
}
};
}