source: rtems/testsuites/itrontests/itrontask03/task2.c @ 3d54837

4.104.115
Last change on this file since 3d54837 was 2f564fee, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:53:25

2003-09-04 Joel Sherrill <joel@…>

  • 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.
  • Property mode set to 100644
File size: 790 bytes
Line 
1/*  Task_2
2 *
3 *  This routine serves as a test task.  It sleeps for 1 minute but
4 *  does not expect to wake up.  Task 1 should suspend then delete it
5 *  so that it appears to never wake up.
6 *
7 *  Input parameters:
8 *    argument - task argument
9 *
10 *  Output parameters:  NONE
11 *
12 *  COPYRIGHT (c) 1989-1999.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.com/license/LICENSE.
18 *
19 *  $Id$
20 */
21
22#include "system.h"
23
24void Task_2()
25{
26  rtems_status_code status;
27
28  puts( "TA2 - rtems_task_wake_after - sleep 1 minute" );
29  status = rtems_task_wake_after( 60*TICKS_PER_SECOND );
30  directive_failed( status, "rtems_task_wake_after in TA2" );
31}
Note: See TracBrowser for help on using the repository browser.