forked from Imagelibrary/rtems
* itronhello/init.c, itronhello/itronhello.doc, itronhello/system.h, itronmbf01/init.c, itronmbf01/itronmbf01.doc, itronmbf01/system.h, itronmbox01/init.c, itronmbox01/system.h, itronsem01/init.c, itronsem01/itronsem01.doc, itronsem01/system.h, itrontask01/init.c, itrontask01/itrontask01.doc, itrontask01/system.h, itrontask01/task1.c, itrontask02/dormant.c, itrontask02/init.c, itrontask02/itrontask02.doc, itrontask02/system.h, itrontask03/init.c, itrontask03/itrontask03.doc, itrontask03/preempt.c, itrontask03/system.h, itrontask03/task1.c, itrontask03/task2.c, itrontask03/task3.c, itrontask04/init.c, itrontask04/itrontask04.doc, itrontask04/system.h, itrontask04/task1.c, itrontask04/task2.c, itrontask04/task3.c, itrontime01/init.c, itrontime01/system.h: URL for license changed.
45 lines
895 B
C
45 lines
895 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-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 <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*TICKS_PER_SECOND );
|
|
directive_failed( status, "rtems_task_wake_after" );
|
|
}
|
|
}
|
|
|