mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 14:47:35 +00:00
Kernel: Make handle_crash available to aarch64
This commit is contained in:
parent
d3b6201b40
commit
6299a69253
8 changed files with 75 additions and 33 deletions
16
Kernel/Arch/aarch64/CrashHandler.cpp
Normal file
16
Kernel/Arch/aarch64/CrashHandler.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <Kernel/Arch/CPU.h>
|
||||
#include <Kernel/Arch/RegisterState.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
void handle_crash(Kernel::RegisterState const&, char const*, int, bool)
|
||||
{
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue