mirror of
https://github.com/RGBCube/serenity
synced 2025-06-03 12:08:11 +00:00

This makes it easier to differentiate between cases where certain functionality is not implemented vs. cases where a code location should really be unreachable.
19 lines
330 B
C++
19 lines
330 B
C++
/*
|
|
* 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();
|
|
}
|
|
|
|
}
|