summaryrefslogtreecommitdiff
path: root/Kernel/Arch/aarch64/Panic.cpp
blob: 85a97674046d8d9d78f5d63d0ed510290f8f7552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) 2022, Timon Kruiper <timonkruiper@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <Kernel/Arch/Processor.h>
#include <Kernel/KSyms.h>
#include <Kernel/Panic.h>

// FIXME: Merge the code in this file with Kernel/Panic.cpp once the proper abstractions are in place.

// Note: This is required here, since __assertion_failed should be out of the Kernel namespace,
//       but the PANIC macro uses functions that require the Kernel namespace.
using namespace Kernel;

[[noreturn]] void __assertion_failed(char const* msg, char const* file, unsigned line, char const* func)
{
    critical_dmesgln("ASSERTION FAILED: {}", msg);
    critical_dmesgln("{}:{} in {}", file, line, func);

    // Used for printing a nice backtrace!
    PANIC("Aborted");
}