2008-06-02 Joel Sherrill <joel.sherrill@oarcorp.com>

* misc/interr.c: Convention calls for leading underscore on private
	RTEMS variables.
This commit is contained in:
Joel Sherrill
2008-06-02 16:11:44 +00:00
parent 38baeb75f1
commit 3e927fa0b4
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2008-06-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* misc/interr.c: Convention calls for leading underscore on private
RTEMS variables.
2008-05-14 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am: Rework to avoid .rel files.

View File

@@ -71,9 +71,9 @@ void volatile _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 );