score: Delete nest level from internal error state

This reverts commit 7d0bdcac1a.
This commit is contained in:
Sebastian Huber
2012-11-18 19:19:18 +01:00
parent 82eb2c4d5f
commit e5a2249a49
2 changed files with 0 additions and 9 deletions

View File

@@ -158,13 +158,6 @@ typedef struct {
bool is_internal;
/** This is the error code. */
Internal_errors_t the_error;
/**
* @brief The internal error nest level.
*
* This helps to detect recursive calls to _Internal_error_Occurred().
*/
uint32_t nest_level;
} Internal_errors_Information;
/**

View File

@@ -55,8 +55,6 @@ void _Internal_error_Occurred(
_Internal_errors_What_happened.is_internal = is_internal;
_Internal_errors_What_happened.the_error = the_error;
++_Internal_errors_What_happened.nest_level;
_User_extensions_Fatal( the_source, is_internal, the_error );
_System_state_Set( SYSTEM_STATE_FAILED );