mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +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.
20 lines
330 B
C++
20 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();
|
|
}
|
|
|
|
}
|