source: rtems/testsuites/itrontests/itrontask03/task1.c @ 9d9a3dd

4.104.114.84.95
Last change on this file since 9d9a3dd was 9d9a3dd, checked in by Jennifer Averett <Jennifer.Averett@…>, on 11/17/99 at 16:47:58

+ Updated copyright information.

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[e099180]1/*  Task_1
2 *
3 *  This routine serves as a test task.  It verifies the task manager.
4 *
5 *  Input parameters:
6 *    argument - task argument
7 *
8 *  Output parameters:  NONE
9 *
[9d9a3dd]10 *  COPYRIGHT (c) 1989-1999.
[e099180]11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.OARcorp.com/rtems/license.html.
16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22void Task_1()
23{
24  ER       status;
25  PRI      previous_priority;
26
27  /*
28   * XXX - Change to itron routine.
29   */
30
31  puts( "TA1 - rtems_task_wake_after - sleep 1 second" );
32  status = rtems_task_wake_after( 1*TICKS_PER_SECOND );
33  directive_failed( status, "rtems_task_wake_after" );
34
35  status = chg_pri( TA3_ID , 2 );
36  directive_failed( status, "chg_pri" );
37
38  puts( "TA1 - chg_pri - set TA3's priority to 2" );
39
[713b2ea]40  puts( "TA1 - sus_tsk - suspend TA2" );
[e099180]41  status = sus_tsk( TA2_ID  );
42  directive_failed( status, "sus_tsk of TA2" );
43
44  puts( "TA1 -  - delete TA2" );
45  status = ter_tsk( TA2_ID );
46  directive_failed( status, "ter_tsk of TA2" );
47
48  /*
49   * XXX - Change to itron routine.
50   */
51
52  puts( "TA1 - rtems_task_wake_after - sleep for 5 seconds" );
53  status = rtems_task_wake_after( 5*TICKS_PER_SECOND );
54  directive_failed( status, "rtems_task_wake_after" );
55
[f4771656]56  puts( "*** ITRON TASK TEST 3 ***" );
[e099180]57  exit( 0 );
58}
Note: See TracBrowser for help on using the repository browser.