summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spwatchdog
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-10 14:49:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-10 14:49:51 +0000
commitbcf16c034de14110506a6d192b943d1864ccdfe4 (patch)
tree29e26886d26c2f01a2da9e0ebf221594a7e25a0a /testsuites/sptests/spwatchdog
parent2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-bcf16c034de14110506a6d192b943d1864ccdfe4.tar.bz2
2009-08-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp01/sp01.scn, sp01/task1.c, sp03/task1.c, sp03/task2.c, sp04/task1.c, sp04/tswitch.c, sp09/screen02.c, sp09/screen13.c, sp09/screen14.c, sp09/sp09.scn, sp11/sp11.scn, sp11/task1.c, sp11/task2.c, sp19/fptask.c, sp19/sp19.scn, sp19/task1.c, sp22/prtime.c, sp22/sp22.scn, sp22/task1.c, sp24/sp24.scn, sp24/task1.c, sp30/task1.c, sp31/prtime.c, sp31/sp31.scn, sp31/task1.c, spwatchdog/prtime.c, spwatchdog/spwatchdog.scn, spwatchdog/task1.c: Convert calls to legacy routine rtems_clock_get( RTEMS_CLOCK_GET_TOD, ..) to rtems_clock_get_tod(..).
Diffstat (limited to 'testsuites/sptests/spwatchdog')
-rw-r--r--testsuites/sptests/spwatchdog/prtime.c6
-rw-r--r--testsuites/sptests/spwatchdog/spwatchdog.scn6
-rw-r--r--testsuites/sptests/spwatchdog/task1.c8
3 files changed, 10 insertions, 10 deletions
diff --git a/testsuites/sptests/spwatchdog/prtime.c b/testsuites/sptests/spwatchdog/prtime.c
index 18ce0b140d..77bb1515f0 100644
--- a/testsuites/sptests/spwatchdog/prtime.c
+++ b/testsuites/sptests/spwatchdog/prtime.c
@@ -23,9 +23,9 @@ void Print_time( void )
rtems_time_of_day time;
rtems_status_code status;
- status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
- directive_failed( status, "rtems_clock_get" );
+ status = rtems_clock_get_tod( &time );
+ directive_failed( status, "rtems_clock_get_tod" );
put_name( Task_name[ 1 ], FALSE );
- print_time( "- rtems_clock_get - ", &time, "\n" );
+ print_time( "- rtems_clock_get_tod - ", &time, "\n" );
}
diff --git a/testsuites/sptests/spwatchdog/spwatchdog.scn b/testsuites/sptests/spwatchdog/spwatchdog.scn
index 5dd19aea37..3135c45c0f 100644
--- a/testsuites/sptests/spwatchdog/spwatchdog.scn
+++ b/testsuites/sptests/spwatchdog/spwatchdog.scn
@@ -6,13 +6,13 @@ INIT - rtems_timer_create - creating timer 1
INIT - timer 1 has id (0x12010001)
TA1 - rtems_timer_ident - identing timer 1
TA1 - timer 1 has id (0x12010001)
-TA1 - rtems_clock_get - 09:00:00 12/31/1988
+TA1 - rtems_clock_get_tod - 09:00:00 12/31/1988
TA1 - rtems_timer_fire_after - timer 1 in 3 seconds
TA1 - rtems_task_suspend( RTEMS_SELF )
-TA1 - rtems_clock_get - 09:00:03 12/31/1988
+TA1 - rtems_clock_get_tod - 09:00:03 12/31/1988
TA1 - rtems_timer_fire_after - timer 1 in 3 seconds
TA1 - rtems_task_wake_after - 1 second
-TA1 - rtems_clock_get - 09:00:04 12/31/1988
+TA1 - rtems_clock_get_tod - 09:00:04 12/31/1988
TA1 - rtems_timer_reset - timer 1
Watchdog Chain: _Watchdog_Ticks_chain 202F530
300 300 20325D0 20131A0 0x12010001 0
diff --git a/testsuites/sptests/spwatchdog/task1.c b/testsuites/sptests/spwatchdog/task1.c
index a89e79243e..f035b8df6a 100644
--- a/testsuites/sptests/spwatchdog/task1.c
+++ b/testsuites/sptests/spwatchdog/task1.c
@@ -116,8 +116,8 @@ rtems_task Task_1(
Print_time();
- status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
- directive_failed( status, "rtems_clock_get" );
+ status = rtems_clock_get_tod( &time );
+ directive_failed( status, "rtems_clock_get_tod" );
time.second += 3;
@@ -133,8 +133,8 @@ rtems_task Task_1(
/* when which is canceled */
- status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
- directive_failed( status, "rtems_clock_get" );
+ status = rtems_clock_get_tod( &time );
+ directive_failed( status, "rtems_clock_get_tod" );
time.second += 3;