source: rtems/testsuites/libtests/rtmonuse/init.c @ fbea3df

4.104.114.95
Last change on this file since fbea3df was fbea3df, checked in by Joel Sherrill <joel.sherrill@…>, on 12/14/07 at 17:46:08

2007-12-14 Joel Sherrill <joel.sherrill@…>

  • rtmonuse/init.c, rtmonuse/task1.c: Add period which is unused to exericise another path in the period statistics code.
  • Property mode set to 100644
File size: 2.3 KB
Line 
1/*  Init
2 *
3 *  This routine is the initialization task for this test program.
4 *  It is a user initialization task and has the responsibility for creating
5 *  and starting the tasks that make up the test.  If the time of day
6 *  clock is required for the test, it should also be set to a known
7 *  value by this function.
8 *
9 *  Input parameters:
10 *    argument - task argument
11 *
12 *  Output parameters:  NONE
13 *
14 *  COPYRIGHT (c) 1989-2007.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.rtems.com/license/LICENSE.
20 *
21 *  $Id$
22 */
23
24#define TEST_INIT
25#include "system.h"
26
27rtems_task Init(
28  rtems_task_argument argument
29)
30{
31  uint32_t          index;
32  rtems_status_code status;
33  rtems_id          rmid;
34  rtems_name        period;
35
36  puts( "\n\n*** RATE MONOTONIC PERIOD STATISTICS TEST ***" );
37
38  period =  rtems_build_name( 'I', 'G', 'N', 'R' );
39  status = rtems_rate_monotonic_create( period, &rmid );
40  directive_failed( status, "rtems_rate_monotonic_create" );
41  put_name( Task_name[ argument ], FALSE );
42  printf( "- rtems_rate_monotonic_create id = 0x%08x (stays inactive)\n", rmid );
43
44
45  Task_name[ 1 ] =  rtems_build_name( 'T', 'A', '1', ' ' );
46  Task_name[ 2 ] =  rtems_build_name( 'T', 'A', '2', ' ' );
47  Task_name[ 3 ] =  rtems_build_name( 'T', 'A', '3', ' ' );
48  Task_name[ 4 ] =  rtems_build_name( 'T', 'A', '4', ' ' );
49  Task_name[ 5 ] =  rtems_build_name( 'T', 'A', '5', ' ' );
50
51  for ( index = 1 ; index <= 5 ; index++ ) {
52    status = rtems_task_create(
53      Task_name[ index ],
54      Priorities[ index ],
55      RTEMS_MINIMUM_STACK_SIZE * 4,
56      RTEMS_DEFAULT_MODES,
57      (index == 5) ? RTEMS_FLOATING_POINT : RTEMS_DEFAULT_ATTRIBUTES,
58      &Task_id[ index ]
59    );
60    directive_failed( status, "rtems_task_create loop" );
61  }
62
63  for ( index = 1 ; index <= 5 ; index++ ) {
64    status = rtems_task_start( Task_id[ index ], Task_1_through_5, index );
65    directive_failed( status, "rtems_task_start loop" );
66  }
67
68  Count.count[ 1 ] = 0;
69  Count.count[ 2 ] = 0;
70  Count.count[ 3 ] = 0;
71  Count.count[ 4 ] = 0;
72  Count.count[ 5 ] = 0;
73
74  status = rtems_task_suspend( RTEMS_SELF );
75  directive_failed( status, "rtems_task_suspend of RTEMS_SELF" );
76}
Note: See TracBrowser for help on using the repository browser.