Files
MentOS/mentos/inc/system/panic.h
T
Luigi Capogrosso 7d9085fecf Finish v0.3.0
2019-05-08 17:07:11 +02:00

13 lines
443 B
C

/// MentOS, The Mentoring Operating system project
/// @file panic.h
/// @brief Functions used to manage kernel panic.
/// @copyright (c) 2019 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#pragma once
/// @brief Prints the given message and then safely stop the execution of
/// the kernel.
/// @param msg The message that has to be shown.
void kernel_panic(const char *msg);