forked from Imagelibrary/rtems
* sp02/task1.c, sp04/system.h, sp04/task1.c, sp04/tswitch.c, sp05/task1.c, sp06/task1.c, sp09/screen01.c, sp09/screen07.c, sp09/screen12.c, sp09/system.h, sp09/task3.c, sp11/task1.c, sp12/pridrv.c, sp12/pritask.c, sp12/system.h, sp13/task1.c, sp13/task2.c, sp13/task3.c, sp14/system.h, sp15/system.h, sp16/system.h, sp17/system.h, sp19/first.c, sp19/fptask.c, sp19/inttest.h, sp19/system.h, sp19/task1.c, sp20/init.c, sp20/system.h, sp20/task1.c, sp23/system.h, sp24/init.c, sp25/system.h, sp30/init.c, spfatal/fatal.c, spfatal/puterr.c, spfatal/system.h, spsize/size.c: Convert to using c99 fixed size types.
68 lines
2.5 KiB
C
68 lines
2.5 KiB
C
/* put_error
|
|
*
|
|
* This routine verifies that the given error is the expected error.
|
|
*
|
|
* Input parameters:
|
|
* error - actual error code
|
|
* expected - expected error code
|
|
*
|
|
* Output parameters: NONE
|
|
*
|
|
* COPYRIGHT (c) 1989-1999.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "system.h"
|
|
|
|
char *Errors[] = {
|
|
"RTEMS_SUCCESSFUL", /* successful completion */
|
|
"RTEMS_TASK_EXITTED", /* returned from a task */
|
|
"RTEMS_MP_NOT_CONFIGURED", /* multiprocessing not configured */
|
|
"RTEMS_INVALID_NAME", /* invalid object name */
|
|
"RTEMS_INVALID_ID", /* invalid object id */
|
|
"RTEMS_TOO_MANY", /* too many */
|
|
"RTEMS_TIMEOUT", /* timed out waiting */
|
|
"RTEMS_OBJECT_WAS_DELETED", /* object was deleted while waiting */
|
|
"RTEMS_INVALID_SIZE", /* specified size was invalid */
|
|
"RTEMS_INVALID_ADDRESS", /* address specified is invalid */
|
|
"RTEMS_INVALID_NUMBER", /* number was invalid */
|
|
"RTEMS_NOT_DEFINED", /* item has not been initialized */
|
|
"RTEMS_RESOURCE_IN_USE", /* resources still outstanding */
|
|
"RTEMS_UNSATISFIED", /* request not satisfied */
|
|
"RTEMS_INCORRECT_STATE", /* task is in wrong state */
|
|
"RTEMS_ALREADY_SUSPENDED", /* task already in state */
|
|
"RTEMS_ILLEGAL_ON_SELF", /* illegal operation on calling task */
|
|
"RTEMS_ILLEGAL_ON_REMOTE_OBJECT", /* illegal operation for remote object */
|
|
"RTEMS_CALLED_FROM_ISR", /* called from ISR */
|
|
"RTEMS_INVALID_PRIORITY", /* invalid task priority */
|
|
"RTEMS_INVALID_CLOCK", /* invalid date/time */
|
|
"RTEMS_INVALID_NODE", /* invalid node id */
|
|
"RTEMS_NOT_OWNER_OF_RESOURCE", /* not owner of resource */
|
|
"RTEMS_NOT_CONFIGURED", /* directive not configured */
|
|
"RTEMS_NOT_IMPLEMENTED" /* directive not implemented */
|
|
};
|
|
|
|
/* Task states */
|
|
|
|
void put_error(
|
|
uint32_t error,
|
|
rtems_status_code expected
|
|
)
|
|
{
|
|
|
|
if ( error <= RTEMS_NOT_IMPLEMENTED )
|
|
printf( "EXPECTED FATAL - error code is correctly %s\n", Errors[ error ] );
|
|
else
|
|
printf( "ERROR - out of range error code is %d\n", error );
|
|
|
|
if ( error != expected ) {
|
|
printf( "ERROR - did not get expected code of %d\n", expected );
|
|
}
|
|
}
|