source: rtems/testsuites/sptests/sp02/task1.c @ 8fbdf07

4.104.114.84.95
Last change on this file since 8fbdf07 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.9 KB
Line 
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 *
10 *  COPYRIGHT (c) 1989-1999.
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
22rtems_task Task_1(
23  rtems_task_argument argument
24)
25{
26  rtems_id          tid2;
27  rtems_id          tid3;
28  rtems_status_code status;
29  rtems_unsigned32  previous_priority;
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 = rtems_task_ident( Task_name[ 2 ], RTEMS_SEARCH_ALL_NODES, &tid2 );
36  directive_failed( status, "rtems_task_ident of TA2" );
37
38  printf( "TA1 - rtems_task_ident - tid of TA2 (0x%.8x)\n", tid2 );
39
40  status = rtems_task_ident( Task_name[ 3 ], RTEMS_SEARCH_ALL_NODES, &tid3 );
41  directive_failed( status, "rtems_task_ident of TA3" );
42
43  printf( "TA1 - rtems_task_ident - tid of TA3 (0x%.8x)\n", tid3 );
44
45  status = rtems_task_set_priority( tid3, 2, &previous_priority );
46  directive_failed( status, "rtems_task_set_priority" );
47
48  puts( "TA1 - rtems_task_set_priority - set TA3's priority to 2" );
49
50
51  puts( "TA1 - rtems_task_suspend - suspend TA2" );
52  status = rtems_task_suspend( tid2 );
53  directive_failed( status, "rtems_task_suspend of TA2" );
54
55  puts( "TA1 - rtems_task_delete - delete TA2" );
56  status = rtems_task_delete( tid2 );
57  directive_failed( status, "rtems_task_delete of TA2" );
58
59  puts( "TA1 - rtems_task_wake_after - sleep for 5 seconds" );
60  status = rtems_task_wake_after( 5*TICKS_PER_SECOND );
61  directive_failed( status, "rtems_task_wake_after" );
62
63  puts( "*** END OF TEST 2 ***" );
64  exit( 0 );
65}
Note: See TracBrowser for help on using the repository browser.