testsuites: Use rtems_fatal_source_description()

This commit is contained in:
Sebastian Huber
2013-01-27 13:05:13 +01:00
parent 967278fd95
commit 565d8daad5
4 changed files with 6 additions and 27 deletions

View File

@@ -34,12 +34,6 @@ void *POSIX_Init(
rtems_test_exit(0);
}
char *Sources[] = {
"INTERNAL_ERROR_CORE",
"INTERNAL_ERROR_RTEMS_API",
"INTERNAL_ERROR_POSIX_API",
};
char *Errors_Rtems[] = {
"RTEMS_SUCCESSFUL", /* successful completion */
"RTEMS_TASK_EXITTED", /* returned from a task */
@@ -84,12 +78,9 @@ void Put_Error( uint32_t source, uint32_t error )
}
}
void Put_Source( uint32_t source )
void Put_Source( rtems_fatal_source source )
{
if ( source > INTERNAL_ERROR_POSIX_API )
printk("Unknown Source (%d)", source);
else
printk( Sources[ source ] );
printk( "%s", rtems_fatal_source_description( source ) );
}

View File

@@ -24,7 +24,7 @@
/* functions */
void force_error(void);
void Put_Source(uint32_t source);
void Put_Source( rtems_fatal_source source );
void Put_Error(
uint32_t source,

View File

@@ -34,13 +34,6 @@ rtems_task Init(
rtems_test_exit(0);
}
char *Sources[] = {
"INTERNAL_ERROR_CORE",
"INTERNAL_ERROR_RTEMS_API",
"INTERNAL_ERROR_POSIX_API",
};
char *Errors_Rtems[] = {
"RTEMS_SUCCESSFUL", /* successful completion */
"RTEMS_TASK_EXITTED", /* returned from a task */
@@ -82,12 +75,9 @@ void Put_Error( uint32_t source, uint32_t error )
}
}
void Put_Source( uint32_t source )
void Put_Source( rtems_fatal_source source )
{
if ( source > INTERNAL_ERROR_POSIX_API )
printk("Unknown Source (%d)", source);
else
printk( Sources[ source ] );
printk( "%s", rtems_fatal_source_description( source ) );
}

View File

@@ -35,9 +35,7 @@ void Put_Error(
uint32_t error
);
void Put_Source(
uint32_t source
);
void Put_Source( rtems_fatal_source source );
void force_error(void);