2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>

* mp01/task1.c, mp02/task1.c, mp03/task1.c, mp05/task1.c, mp06/task1.c,
	mp07/task1.c, mp08/task1.c, mp09/recvmsg.c, mp09/sendmsg.c,
	mp09/task1.c, mp10/init.c, mp12/init.c, mp13/init.c, mp13/task1.c,
	mp13/task2.c, mp14/evtask1.c, mp14/init.c: Eliminate test routines
	TICKS_PER_SECOND and get_ticks_per_second() in favor of new
	rtems_clock_get_ticks_per_second().
This commit is contained in:
Joel Sherrill
2009-08-12 20:50:29 +00:00
parent de7adafc8c
commit 9992cac496
18 changed files with 55 additions and 46 deletions

View File

@@ -7,7 +7,7 @@
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-1999.
* COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -41,6 +41,6 @@ void Receive_messages()
}
puts( "Receiver delaying for a second" );
status = rtems_task_wake_after( TICKS_PER_SECOND );
status = rtems_task_wake_after( rtems_clock_get_ticks_per_second() );
directive_failed( status, "rtems_task_wake_after" );
}