Files
rtems/testsuites/itrontests/itrontask02/dormant.c
Joel Sherrill 6d1e9b8bf9 2009-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* itrontask01/task1.c, itrontask02/dormant.c, itrontask03/task1.c,
	itrontask03/task2.c, itrontask03/task3.c, itrontask04/task3.c:
	Eliminate test routines TICKS_PER_SECOND and get_ticks_per_second()
	in favor of new rtems_clock_get_ticks_per_second().
2009-08-12 20:50:24 +00:00

44 lines
910 B
C

/* Dormant
*
* This routine serves as two test tasks.
* It has one dormant and one sleeping tasks.
*
* Input parameters:
* argument - task argument
*
* Output parameters: NONE
*
* COPYRIGHT (c) 1989-2009.
* 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 <assert.h>
#include "system.h"
void Dormant_task()
{
puts( "DORMANT - ext_tsk - going to DORMANT state" );
ext_tsk( );
puts( "ERROR==>ext_tsk of DORMANT returned" );
assert(0);
}
void Non_Dormant_task()
{
ER status;
while (TRUE) {
puts( "NON-DORMANT - Sleep for 2 minutes" );
status = rtems_task_wake_after( 120*rtems_clock_get_ticks_per_second() );
directive_failed( status, "rtems_task_wake_after" );
}
}