mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
7df411e7b7
improved files complient to issue #950 - thread.h - flags.h - debug.h - crash.h
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2014 INRIA
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup core_util
|
|
* @{
|
|
*
|
|
* @file crash.h
|
|
* @brief Crash handling header
|
|
*
|
|
* Define a core_panic() function that allows to stop/reboot the system
|
|
* when an unrecoverable problem has occurred.
|
|
*
|
|
* @author Kévin Roussel <Kevin.Roussel@inria.fr>
|
|
*/
|
|
|
|
#ifndef __CRASH_H
|
|
#define __CRASH_H
|
|
|
|
#include "kernel.h"
|
|
|
|
/**
|
|
* @brief Handle an unrecoverable error by halting or rebooting the system
|
|
*
|
|
* A numeric code indicating the failure reason can be given
|
|
* as the *crash_code* parameter.
|
|
*
|
|
* Detailing the failure is possible using the *message* parameter.
|
|
* This function should serve a similar purpose as the panic()
|
|
* function of Unix/Linux kernels.
|
|
*
|
|
* If the DEVELHELP macro is defined, the system will be halted;
|
|
* the system will be rebooted otherwise.
|
|
*
|
|
* @warning this function NEVER returns!
|
|
*
|
|
* @param[in] crash_code a unique code for identifying the crash reason
|
|
* @param[in] message a human readable reason for the crash
|
|
*
|
|
* @return this function never returns
|
|
* */
|
|
NORETURN void core_panic(int crash_code, const char *message);
|
|
|
|
#endif /* __CRASH_H */
|
|
/** @} */
|