mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-10 17:43:21 +00:00
Reflect having introduced Internal_errors_t.
This commit is contained in:
@@ -20,14 +20,14 @@
|
|||||||
#ifndef _RTEMS_SCORE_USEREXT_H
|
#ifndef _RTEMS_SCORE_USEREXT_H
|
||||||
#define _RTEMS_SCORE_USEREXT_H
|
#define _RTEMS_SCORE_USEREXT_H
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <rtems/score/interr.h>
|
#include <rtems/score/interr.h>
|
||||||
#include <rtems/score/chain.h>
|
#include <rtems/score/chain.h>
|
||||||
#include <rtems/score/thread.h>
|
#include <rtems/score/thread.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef void User_extensions_routine RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
|
typedef void User_extensions_routine RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -185,7 +185,7 @@ typedef void( *User_extensions_thread_exitted_extension )(
|
|||||||
typedef void( *User_extensions_fatal_extension )(
|
typedef void( *User_extensions_fatal_extension )(
|
||||||
Internal_errors_Source,
|
Internal_errors_Source,
|
||||||
bool,
|
bool,
|
||||||
uint32_t
|
Internal_errors_t
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -310,7 +310,7 @@ void _User_extensions_Thread_exitted(
|
|||||||
void _User_extensions_Fatal(
|
void _User_extensions_Fatal(
|
||||||
Internal_errors_Source source,
|
Internal_errors_Source source,
|
||||||
bool is_internal,
|
bool is_internal,
|
||||||
uint32_t error
|
Internal_errors_t error
|
||||||
);
|
);
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
void _Internal_error_Occurred(
|
void _Internal_error_Occurred(
|
||||||
Internal_errors_Source the_source,
|
Internal_errors_Source the_source,
|
||||||
bool is_internal,
|
bool is_internal,
|
||||||
uint32_t the_error
|
Internal_errors_t the_error
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ void _User_extensions_Thread_exitted (
|
|||||||
void _User_extensions_Fatal (
|
void _User_extensions_Fatal (
|
||||||
Internal_errors_Source the_source,
|
Internal_errors_Source the_source,
|
||||||
bool is_internal,
|
bool is_internal,
|
||||||
uint32_t the_error
|
Internal_errors_t the_error
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
Chain_Node *the_node;
|
Chain_Node *the_node;
|
||||||
|
|||||||
Reference in New Issue
Block a user