source: rtems/testsuites/tmtests/tm18/task1.c @ e6424462

4.104.114.84.95
Last change on this file since e6424462 was 5c491aef, checked in by Joel Sherrill <joel.sherrill@…>, on 12/20/95 at 15:39:19

changes remerged after lost in disk crash -- recovered from snapshot, partially recovered working tree, etc

  • Property mode set to 100644
File size: 2.2 KB
Line 
1/*
2 *
3 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
4 *  On-Line Applications Research Corporation (OAR).
5 *  All rights assigned to U.S. Government, 1994.
6 *
7 *  This material may be reproduced by or for the U.S. Government pursuant
8 *  to the copyright license under the clause at DFARS 252.227-7013.  This
9 *  notice must appear in all copies of this file and its derivatives.
10 *
11 *  $Id$
12 */
13
14#define TEST_INIT
15#include "system.h"
16
17rtems_unsigned32 taskcount;
18rtems_task_priority taskpri;
19
20rtems_task First_task(
21  rtems_task_argument argument
22);
23
24rtems_task Middle_tasks(
25  rtems_task_argument argument
26);
27
28rtems_task Last_task(
29  rtems_task_argument argument
30);
31
32
33void test_init();
34
35rtems_task Init(
36  rtems_task_argument argument
37)
38{
39  rtems_status_code status;
40
41  Print_Warning();
42
43  puts( "\n\n*** TIME TEST 18 ***" );
44
45  test_init();
46
47  status = rtems_task_delete( RTEMS_SELF );
48  directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
49}
50
51void test_init()
52{
53  rtems_id          id;
54  rtems_task_entry  task_entry;
55  rtems_unsigned32  index;
56  rtems_status_code status;
57
58  for ( index = 0 ; index <= OPERATION_COUNT ; index++ ) {
59    status = rtems_task_create(
60      rtems_build_name( 'T', 'I', 'M', 'E' ),
61      128,
62      RTEMS_MINIMUM_STACK_SIZE,
63      RTEMS_DEFAULT_MODES,
64      RTEMS_DEFAULT_ATTRIBUTES,
65      &id
66    );
67    directive_failed( status, "rtems_task_create loop" );
68
69    if ( index == OPERATION_COUNT ) task_entry = Last_task;
70    else if ( index == 0 )          task_entry = First_task;
71    else                            task_entry = Middle_tasks;
72
73
74    status = rtems_task_start( id, task_entry, 0 );
75    directive_failed( status, "rtems_task_start loop" );
76  }
77
78}
79
80rtems_task First_task(
81  rtems_task_argument argument
82)
83{
84  Timer_initialize();
85
86  (void) rtems_task_delete( RTEMS_SELF );
87}
88
89rtems_task Middle_tasks(
90  rtems_task_argument argument
91)
92{
93  (void) rtems_task_delete( RTEMS_SELF );
94}
95
96rtems_task Last_task(
97  rtems_task_argument argument
98)
99{
100  end_time = Read_timer();
101
102  put_time(
103    "rtems_task_delete: calling task",
104    end_time,
105    OPERATION_COUNT,
106    0,
107    CALLING_OVERHEAD_TASK_DELETE
108  );
109
110  puts( "*** END OF TEST 18 ***" );
111  exit( 0 );
112}
Note: See TracBrowser for help on using the repository browser.