📄 interr.h
字号:
/** * @file rtems/score/interr.h * * This include file contains constants and prototypes related * to the Internal Error Handler. *//* * COPYRIGHT (c) 1989-2006. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id: interr.h,v 1.20 2006/01/16 15:13:58 joel Exp $ */#ifndef _RTEMS_SCORE_INTERR_H#define _RTEMS_SCORE_INTERR_H/** * @defgroup ScoreIntErr Internal Error Handler * * This handler encapsulates functionality which provides the foundation * Semaphore services used in all of the APIs supported by RTEMS. *//**@{*/#ifdef __cplusplusextern "C" {#endif/** * This type lists the possible sources from which an error * can be reported. */typedef enum { INTERNAL_ERROR_CORE, INTERNAL_ERROR_RTEMS_API, INTERNAL_ERROR_POSIX_API, INTERNAL_ERROR_ITRON_API} Internal_errors_Source;/** * A list of errors which are generated internally by the executive core. */typedef enum { INTERNAL_ERROR_NO_CONFIGURATION_TABLE, INTERNAL_ERROR_NO_CPU_TABLE, INTERNAL_ERROR_INVALID_WORKSPACE_ADDRESS, INTERNAL_ERROR_TOO_LITTLE_WORKSPACE, INTERNAL_ERROR_WORKSPACE_ALLOCATION, INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL, INTERNAL_ERROR_THREAD_EXITTED, INTERNAL_ERROR_INCONSISTENT_MP_INFORMATION, INTERNAL_ERROR_INVALID_NODE, INTERNAL_ERROR_NO_MPCI, INTERNAL_ERROR_BAD_PACKET, INTERNAL_ERROR_OUT_OF_PACKETS, INTERNAL_ERROR_OUT_OF_GLOBAL_OBJECTS, INTERNAL_ERROR_OUT_OF_PROXIES, INTERNAL_ERROR_INVALID_GLOBAL_ID, INTERNAL_ERROR_BAD_STACK_HOOK, INTERNAL_ERROR_BAD_ATTRIBUTES} Internal_errors_Core_list;/** * This type holds the fatal error information. */typedef struct { /** This is the source of the error. */ Internal_errors_Source the_source; /** This indicates if the error is internal of external. */ boolean is_internal; /** This is the error code. */ uint32_t the_error;} Internal_errors_Information;/** * When a fatal error occurs, the error information is stored here. */SCORE_EXTERN Internal_errors_Information Internal_errors_What_happened;/** @brief Internal error Occurred * * This routine is invoked when the application or the executive itself * determines that a fatal error has occurred. */void _Internal_error_Occurred( Internal_errors_Source the_source, boolean is_internal, uint32_t the_error);#ifdef __cplusplus}#endif/**@}*/#endif/* end of include file */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -