forked from Imagelibrary/rtems
2008-06-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/include/rtems/score/interr.h, score/src/interr.c: Convention calls for leading underscore on private RTEMS variables.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-06-02 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* score/include/rtems/score/interr.h, score/src/interr.c: Convention
|
||||
calls for leading underscore on private RTEMS variables.
|
||||
|
||||
2008-05-31 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* score/include/rtems/score/object.h,
|
||||
|
||||
@@ -83,7 +83,7 @@ typedef struct {
|
||||
/**
|
||||
* When a fatal error occurs, the error information is stored here.
|
||||
*/
|
||||
SCORE_EXTERN Internal_errors_Information Internal_errors_What_happened;
|
||||
SCORE_EXTERN Internal_errors_Information _Internal_errors_What_happened;
|
||||
|
||||
/** @brief Internal error Occurred
|
||||
*
|
||||
|
||||
@@ -50,9 +50,9 @@ void _Internal_error_Occurred(
|
||||
)
|
||||
{
|
||||
|
||||
Internal_errors_What_happened.the_source = the_source;
|
||||
Internal_errors_What_happened.is_internal = is_internal;
|
||||
Internal_errors_What_happened.the_error = the_error;
|
||||
_Internal_errors_What_happened.the_source = the_source;
|
||||
_Internal_errors_What_happened.is_internal = is_internal;
|
||||
_Internal_errors_What_happened.the_error = the_error;
|
||||
|
||||
_User_extensions_Fatal( the_source, is_internal, the_error );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user