1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-09-14 02:27:58 +00:00

Kernel: Share CrashHandler.cpp between aarch64 and x86_64

This file contains no architecture specific code, so can be moved to the
Kernel/ directory, and thus shared between aarch64 and x86_64.
This commit is contained in:
Timon Kruiper 2023-01-30 11:05:59 +01:00 committed by Linus Groh
parent 7ba9bc6338
commit 816076f71a
3 changed files with 2 additions and 22 deletions

View file

@ -1,19 +0,0 @@
/*
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Forward.h>
#include <Kernel/Arch/CPU.h>
#include <Kernel/Arch/RegisterState.h>
namespace Kernel {
void handle_crash(Kernel::RegisterState const&, char const*, int, bool)
{
TODO_AARCH64();
}
}