source: rtems/testsuites/tmtests/tm21/task1.c @ 0720ff4

4.104.114.84.95
Last change on this file since 0720ff4 was 0720ff4, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/28/04 at 07:20:11

2004-03-28 Ralf Corsepius <ralf_corsepius@…>

  • include/timesys.h, tm01/task1.c, tm02/task1.c, tm03/task1.c, tm04/task1.c, tm05/task1.c, tm06/task1.c, tm07/task1.c, tm08/task1.c, tm09/task1.c, tm10/task1.c, tm11/task1.c, tm12/task1.c, tm13/task1.c, tm14/task1.c, tm15/task1.c, tm16/task1.c, tm17/task1.c, tm18/task1.c, tm20/task1.c, tm21/task1.c, tm22/task1.c, tm23/task1.c, tm24/task1.c, tm25/task1.c, tm26/task1.c, tm27/task1.c, tm28/task1.c, tm29/task1.c, tmck/task1.c, tmoverhd/testtask.c: Convert to using c99 fixed size types.
  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[ac7d5ef0]1/*
2 *
[08311cc3]3 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]4 *  On-Line Applications Research Corporation (OAR).
5 *
[98e4ebf5]6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
[95a81ab]8 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]9 *
[3235ad9]10 *  $Id$
[ac7d5ef0]11 */
12
[3a4ae6c]13#define TEST_INIT
[ac7d5ef0]14#include "system.h"
15
[0720ff4]16uint8_t   Region_area[ 2048 ] CPU_STRUCTURE_ALIGNMENT;
17uint8_t   Partition_area[ 2048 ] CPU_STRUCTURE_ALIGNMENT;
[ac7d5ef0]18
19rtems_task Task_1(
20  rtems_task_argument argument
21);
22
23rtems_task Init(
24  rtems_task_argument argument
25)
26{
27  rtems_id          id;
28  rtems_status_code status;
29
[3a4ae6c]30  Print_Warning();
31
[ac7d5ef0]32  puts( "\n\n*** TIME TEST 21 ***" );
33
34  status = rtems_task_create(
35    rtems_build_name( 'T', 'I', 'M', 'E' ),
36    250,
[3652ad35]37    RTEMS_MINIMUM_STACK_SIZE,
[ac7d5ef0]38    RTEMS_DEFAULT_MODES,
39    RTEMS_DEFAULT_ATTRIBUTES,
40    &id
41  );
42  directive_failed( status, "rtems_task_create of TASK1" );
43
44  status = rtems_task_start( id, Task_1, 0 );
45  directive_failed( status, "rtems_task_start of TASK1" );
46
47  status = rtems_task_delete( RTEMS_SELF );
48  directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
49}
50
[df49c60]51#define MESSAGE_SIZE (sizeof(long) * 4)
52
[ac7d5ef0]53rtems_task Task_1(
54  rtems_task_argument argument
55)
56{
[0720ff4]57  uint32_t    index;
[ac7d5ef0]58  rtems_id          id;
59  rtems_status_code status;
60
61  for( index = 1 ; index <= OPERATION_COUNT ; index++ ) {
62    status = rtems_task_create (
63      index,
64      254,
[3652ad35]65      RTEMS_MINIMUM_STACK_SIZE,
[ac7d5ef0]66      RTEMS_DEFAULT_MODES,
67      RTEMS_DEFAULT_ATTRIBUTES,
68      &id
69    );
70    directive_failed( status, "rtems_task_create" );
71
72    status = rtems_message_queue_create(
73      index,
[d2d6467]74      1,                       /* only going to ident this queue */
[df49c60]75      MESSAGE_SIZE,
[ac7d5ef0]76      RTEMS_DEFAULT_ATTRIBUTES,
77      &id
78    );
79    directive_failed( status, "rtems_message_queue_create" );
80
81    status = rtems_semaphore_create(
82      index,
83      OPERATION_COUNT,
84      RTEMS_DEFAULT_ATTRIBUTES,
[7f6a24ab]85      RTEMS_NO_PRIORITY,
[ac7d5ef0]86      &id
87    );
88    directive_failed( status, "rtems_semaphore_create" );
89
90    status = rtems_region_create(
91      index,
92      Region_area,
93      2048,
94      16,
95      RTEMS_DEFAULT_ATTRIBUTES,
96      &id
97    );
98    directive_failed( status, "rtems_region_create" );
99
100    status = rtems_partition_create(
101      index,
102      Partition_area,
103      2048,
104      128,
105      RTEMS_DEFAULT_ATTRIBUTES,
106      &id
107    );
108    directive_failed( status, "rtems_partition_create" );
109
110    status = rtems_port_create(
111      index,
112      Partition_area,
113      Region_area,
114      0xff,
115      &id
116    );
117    directive_failed( status, "rtems_port_create" );
118
119    status = rtems_timer_create( index, &id );
120    directive_failed( status, "rtems_timer_create" );
121
122    status = rtems_rate_monotonic_create( index, &id );
123    directive_failed( status, "rtems_rate_monotonic_create" );
124  }
125
126  Timer_initialize();
127    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
128      (void) Empty_function();
129  overhead = Read_timer();
130
131  Timer_initialize();
132    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
133      (void) rtems_task_ident( index, RTEMS_SEARCH_ALL_NODES, &id );
134  end_time = Read_timer();
135
136  put_time(
137    "rtems_task_ident",
138    end_time,
139    OPERATION_COUNT,
140    overhead,
141    CALLING_OVERHEAD_TASK_IDENT
142  );
143
144  Timer_initialize();
145    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
146      (void) rtems_message_queue_ident( index, RTEMS_SEARCH_ALL_NODES, &id );
147  end_time = Read_timer();
148
149  put_time(
150    "rtems_message_queue_ident",
151    end_time,
152    OPERATION_COUNT,
153    overhead,
154    CALLING_OVERHEAD_MESSAGE_QUEUE_IDENT
155  );
156
157  Timer_initialize();
158    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
159      (void) rtems_semaphore_ident( index, RTEMS_SEARCH_ALL_NODES, &id );
160  end_time = Read_timer();
161
162  put_time(
163    "rtems_semaphore_ident",
164    end_time,
165    OPERATION_COUNT,
166    overhead,
167    CALLING_OVERHEAD_SEMAPHORE_IDENT
168  );
169
170  Timer_initialize();
171    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
172      (void) rtems_partition_ident( index, RTEMS_SEARCH_ALL_NODES, &id );
173  end_time = Read_timer();
174
175  put_time(
176    "rtems_partition_ident",
177    end_time,
178    OPERATION_COUNT,
179    overhead,
180    CALLING_OVERHEAD_PARTITION_IDENT
181  );
182
183  Timer_initialize();
184    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
185      (void) rtems_region_ident( index, &id );
186  end_time = Read_timer();
187
188  put_time(
189    "rtems_region_ident",
190    end_time,
191    OPERATION_COUNT,
192    overhead,
193    CALLING_OVERHEAD_REGION_IDENT
194  );
195
196  Timer_initialize();
197    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
198      (void) rtems_port_ident( index, &id );
199  end_time = Read_timer();
200
201  put_time(
202    "rtems_port_ident",
203    end_time,
204    OPERATION_COUNT,
205    overhead,
206    CALLING_OVERHEAD_PORT_IDENT
207  );
208
209  Timer_initialize();
210    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
211      (void) rtems_timer_ident( index, &id );
212  end_time = Read_timer();
213
214  put_time(
215    "rtems_timer_ident",
216    end_time,
217    OPERATION_COUNT,
218    overhead,
219    CALLING_OVERHEAD_TIMER_IDENT
220  );
221
222  Timer_initialize();
223    for ( index=1 ; index <= OPERATION_COUNT ; index++ )
224      (void) rtems_rate_monotonic_ident( index, &id );
225  end_time = Read_timer();
226
227  put_time(
228    "rtems_rate_monotonic_ident",
229    end_time,
230    OPERATION_COUNT,
231    overhead,
232    CALLING_OVERHEAD_RATE_MONOTONIC_IDENT
233  );
234
[3a4ae6c]235  puts( "*** END OF TEST 21 ***" );
[b454bc9]236  rtems_test_exit( 0 );
[ac7d5ef0]237}
Note: See TracBrowser for help on using the repository browser.