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

Kernel/aarch64: Implement stub for asm_signal_trampoline

This get us further into the boot process, since Process::initialize
does not crash anymore.
This commit is contained in:
Timon Kruiper 2022-12-22 16:48:11 +01:00 committed by Andrew Kaster
parent 1cc06b9985
commit 21deb603de
2 changed files with 11 additions and 4 deletions

View file

@ -12,10 +12,6 @@
#include <Kernel/Sections.h>
#include <Kernel/kstdio.h>
// Process
char const* asm_signal_trampoline = nullptr;
char const* asm_signal_trampoline_end = nullptr;
namespace Kernel {
ProcessID g_init_pid { 0 };