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

* shared/startup/panic.c: Convention calls for leading underscore on
	private RTEMS variables.
This commit is contained in:
Joel Sherrill
2008-06-02 16:11:56 +00:00
parent 3e927fa0b4
commit 389908027e
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2008-06-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* shared/startup/panic.c: Convention calls for leading underscore on
private RTEMS variables.
2008-05-23 Till Straumann <strauman@slac.stanford.edu>
* shared/startup/pretaskinghook.c: removed declaration

View File

@@ -19,9 +19,9 @@ void BSP_panic(char *s)
rebootQuestion();
}
#define THESRC Internal_errors_What_happened.the_source
#define ISITNL Internal_errors_What_happened.is_internal
#define THEERR Internal_errors_What_happened.the_error
#define THESRC _Internal_errors_What_happened.the_source
#define ISITNL _Internal_errors_What_happened.is_internal
#define THEERR _Internal_errors_What_happened.the_error
char *score_status_text(rtems_status_code sc)
{