source: rtems/cpukit/score/include/rtems/score/interr.h @ 038e2f4a

4.115
Last change on this file since 038e2f4a was 038e2f4a, checked in by Sebastian Huber <sebastian.huber@…>, on 11/14/12 at 08:58:53

score: Add RTEMS_FATAL_SOURCE_APPLICATION

  • Property mode set to 100644
File size: 3.9 KB
Line 
1/**
2 *  @file  rtems/score/interr.h
3 *
4 *  This include file contains constants and prototypes related
5 *  to the Internal Error Handler.
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2009.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 */
16
17#ifndef _RTEMS_SCORE_INTERR_H
18#define _RTEMS_SCORE_INTERR_H
19
20#include <stdbool.h>
21#include <stdint.h>
22
23#include <rtems/system.h>
24
25/**
26 *  @defgroup ScoreIntErr Internal Error Handler
27 *
28 *  @ingroup Score
29 *
30 *  This handler encapsulates functionality which provides the foundation
31 *  Semaphore services used in all of the APIs supported by RTEMS.
32 */
33/**@{*/
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/**
40 *  @brief This type lists the possible sources from which an error
41 *  can be reported.
42 */
43typedef enum {
44  INTERNAL_ERROR_CORE,
45  INTERNAL_ERROR_RTEMS_API,
46  INTERNAL_ERROR_POSIX_API,
47
48  /**
49   * @brief Fatal source for the block device cache.
50   *
51   * @see rtems_bdbuf_fatal_code.
52   */
53  RTEMS_FATAL_SOURCE_BDBUF,
54
55  /**
56   * @brief Fatal source for application specific errors.
57   *
58   * The fatal code is application specific.
59   */
60  RTEMS_FATAL_SOURCE_APPLICATION,
61
62  /**
63   * @brief The last available fatal source.
64   *
65   * This enum value ensures that the enum type needs at least 32-bits for
66   * architectures with short enums.
67   */
68  RTEMS_FATAL_SOURCE_LAST = 0xffffffff
69} Internal_errors_Source;
70
71/**
72 *  A list of errors which are generated internally by the executive core.
73 */
74typedef enum {
75  INTERNAL_ERROR_NO_CONFIGURATION_TABLE,
76  INTERNAL_ERROR_NO_CPU_TABLE,
77  INTERNAL_ERROR_TOO_LITTLE_WORKSPACE,
78  INTERNAL_ERROR_WORKSPACE_ALLOCATION,
79  INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL,
80  INTERNAL_ERROR_THREAD_EXITTED,
81  INTERNAL_ERROR_INCONSISTENT_MP_INFORMATION,
82  INTERNAL_ERROR_INVALID_NODE,
83  INTERNAL_ERROR_NO_MPCI,
84  INTERNAL_ERROR_BAD_PACKET,
85  INTERNAL_ERROR_OUT_OF_PACKETS,
86  INTERNAL_ERROR_OUT_OF_GLOBAL_OBJECTS,
87  INTERNAL_ERROR_OUT_OF_PROXIES,
88  INTERNAL_ERROR_INVALID_GLOBAL_ID,
89  INTERNAL_ERROR_BAD_STACK_HOOK,
90  INTERNAL_ERROR_BAD_ATTRIBUTES,
91  INTERNAL_ERROR_IMPLEMENTATION_KEY_CREATE_INCONSISTENCY,
92  INTERNAL_ERROR_IMPLEMENTATION_BLOCKING_OPERATION_CANCEL,
93  INTERNAL_ERROR_MUTEX_OBTAIN_FROM_BAD_STATE,
94  INTERNAL_ERROR_UNLIMITED_AND_MAXIMUM_IS_0,
95  INTERNAL_ERROR_SHUTDOWN_WHEN_NOT_UP,
96  INTERNAL_ERROR_GXX_KEY_ADD_FAILED,
97  INTERNAL_ERROR_GXX_MUTEX_INIT_FAILED,
98  INTERNAL_ERROR_NO_MEMORY_FOR_HEAP,
99  INTERNAL_ERROR_CPU_ISR_INSTALL_VECTOR
100} Internal_errors_Core_list;
101
102typedef uint32_t Internal_errors_t;
103
104/**
105 *  This type holds the fatal error information.
106 */
107typedef struct {
108  /** This is the source of the error. */
109  Internal_errors_Source  the_source;
110  /** This indicates if the error is internal of external. */
111  bool                    is_internal;
112  /** This is the error code. */
113  Internal_errors_t       the_error;
114
115  /**
116   * @brief The internal error nest level.
117   *
118   * This helps to detect recursive calls to _Internal_error_Occurred().
119   */
120  uint32_t                nest_level;
121} Internal_errors_Information;
122
123/**
124 *  When a fatal error occurs, the error information is stored here.
125 */
126extern Internal_errors_Information _Internal_errors_What_happened;
127
128/**
129 * @brief An internal or fatal error occurred.
130 *
131 * This routine is invoked when the application or the executive itself
132 * determines that a fatal error has occurred.
133 *
134 * This function can be called in every system state provided the following
135 * conditions are true
136 * - the stack pointer is valid,
137 * - the code memory is valid,
138 * - the read-only data is valid, and
139 * - the read-write data is accessible.
140 */
141void _Internal_error_Occurred(
142  Internal_errors_Source  the_source,
143  bool                    is_internal,
144  Internal_errors_t       the_error
145) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
146
147#ifdef __cplusplus
148}
149#endif
150
151/**@}*/
152
153#endif
154/* end of include file */
Note: See TracBrowser for help on using the repository browser.