source: rtems/testsuites/tmtests/tmck/task1.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 3.6 KB
Line 
1/*
2 *
3 *  COPYRIGHT (c) 1989-1999.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 */
10
11
12#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#define CONFIGURE_INIT
17#include "system.h"
18
19#define MAXIMUM_DISTRIBUTION 1000
20
21#undef OPERATION_COUNT
22#define OPERATION_COUNT    100000
23
24uint32_t Distribution[ MAXIMUM_DISTRIBUTION + 1 ];
25
26rtems_task Task_1(
27  rtems_task_argument argument
28);
29
30void check_read_timer( void );
31
32rtems_task Init(
33  rtems_task_argument argument
34)
35{
36  rtems_id          id;
37  rtems_status_code status;
38
39  /*
40   *  Tell the Timer Driver what we are doing
41   */
42
43  benchmark_timer_disable_subtracting_average_overhead( 1 );
44
45  Print_Warning();
46
47  puts( "\n\n*** TIME CHECKER ***" );
48
49  Task_name[ 1 ] = rtems_build_name( 'T', 'A', '1', ' ' ),
50
51  status = rtems_task_create(
52    1,
53    5,
54    RTEMS_MINIMUM_STACK_SIZE,
55    RTEMS_DEFAULT_MODES,
56    RTEMS_DEFAULT_ATTRIBUTES,
57    &id
58  );
59  directive_failed( status, "rtems_task_create of TA1" );
60
61  status = rtems_task_start( id, Task_1, 0 );
62  directive_failed( status, "rtems_task_start of TA1" );
63
64  status = rtems_task_delete( RTEMS_SELF );
65  directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
66}
67
68rtems_task Task_1(
69  rtems_task_argument argument
70)
71{
72  uint32_t   index;
73
74  check_read_timer();
75rtems_test_pause();
76
77  benchmark_timer_initialize();
78  end_time = benchmark_timer_read();
79
80  put_time(
81    "NULL timer stopped at",
82    end_time,
83    1,
84    0,
85    0
86  );
87
88  benchmark_timer_initialize();
89  for ( index = 1 ; index <= 1000 ; index++ )
90    (void) benchmark_timer_empty_function();
91  end_time = benchmark_timer_read();
92
93  put_time(
94    "LOOP (1000) timer stopped at",
95    end_time,
96    1,
97    0,
98    0
99  );
100
101  benchmark_timer_initialize();
102  for ( index = 1 ; index <= 10000 ; index++ )
103    (void) benchmark_timer_empty_function();
104  end_time = benchmark_timer_read();
105
106  put_time(
107    "LOOP (10000) timer stopped at",
108    end_time,
109    1,
110    0,
111    0
112  );
113
114  benchmark_timer_initialize();
115  for ( index = 1 ; index <= 50000 ; index++ )
116    (void) benchmark_timer_empty_function();
117  end_time = benchmark_timer_read();
118
119  put_time(
120    "LOOP (50000) timer stopped at",
121    end_time,
122    1,
123    0,
124    0
125  );
126
127  benchmark_timer_initialize();
128  for ( index = 1 ; index <= 100000 ; index++ )
129    (void) benchmark_timer_empty_function();
130  end_time = benchmark_timer_read();
131
132  put_time(
133    "LOOP (100000) timer stopped at",
134    end_time,
135    1,
136    0,
137    0
138  );
139
140  puts( "*** END OF TIME CHECKER ***" );
141  rtems_test_exit( 0 );
142}
143
144void check_read_timer()
145{
146  uint32_t   index;
147  uint32_t   time;
148
149  for ( index = 1 ; index <= MAXIMUM_DISTRIBUTION ; index++ )
150    Distribution[ index ] = 0;
151
152  for ( index = 1 ; index <= OPERATION_COUNT ; ) {
153    benchmark_timer_initialize();
154    end_time = benchmark_timer_read();
155    if ( end_time > MAXIMUM_DISTRIBUTION ) {
156      /*
157       *  Under UNIX a simple process swap takes longer than we
158       *  consider valid for our testing purposes.
159       */
160      printf( "TOO LONG (%" PRIu32 ") at index %" PRIu32 "!!!\n", end_time, index );
161      continue;
162    }
163    Distribution[ end_time ]++;
164    index++;
165  }
166
167  printf( "Units may not be in microseconds for this test!!!\n" );
168  time = 0;
169  for ( index = 0 ; index <= MAXIMUM_DISTRIBUTION ; index++ ) {
170    time += (Distribution[ index ] * index);
171    if ( Distribution[ index ] != 0 )
172      printf( "%" PRId32 " %" PRId32 "\n", index, Distribution[ index ] );
173  }
174  printf( "Total time = %" PRId32 "\n", time );
175  printf( "Average time = %" PRId32 "\n", time / OPERATION_COUNT );
176}
Note: See TracBrowser for help on using the repository browser.