2011-06-11 Joel Sherrill <joel.sherrill@oarcorp.com>

* sp09/screen02.c, sp09/screen13.c, sp09/sp09.scn, sp29/init.c,
	sp30/sp30.scn, sp32/init.c, spclockget/init.c: Avoid use of
	deprecated rtems_clock_get() except in spclockget().
This commit is contained in:
Joel Sherrill
2011-06-11 16:42:05 +00:00
parent 91c805472d
commit f4773a477a
8 changed files with 49 additions and 61 deletions

View File

@@ -1,5 +1,5 @@
/*
* COPYRIGHT (c) 1989-2009.
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -31,6 +31,16 @@ rtems_task Init(
sc = rtems_clock_set( &time );
directive_failed( sc, "rtems_clock_set" );
/* NULL parameter */
sc = rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, NULL );
fatal_directive_status( sc, RTEMS_INVALID_ADDRESS, "null pointer" );
puts( "TA1 - rtems_clock_get - RTEMS_INVALID_ADDRESS" );
/* arbitrary bad value for switch */
sc = rtems_clock_get( 0xff, &timev );
fatal_directive_status( sc, RTEMS_INVALID_NUMBER, "bad case" );
puts( "TA1 - rtems_clock_get - RTEMS_INVALID_NUMBER" );
sc = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
directive_failed( sc, "rtems_clock_get -- TOD" );
print_time( "Init - rtems_clock_get - ", &time, "\n" );