source: rtems/testsuites/sptests/spedfsched02/init.c @ 6c0301d

4.115
Last change on this file since 6c0301d was 6c0301d, checked in by Sebastian Huber <sebastian.huber@…>, on 03/25/14 at 07:06:21

tests/sptests: Use <rtems/test.h>

  • Property mode set to 100644
File size: 2.1 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-1999.
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.org/license/LICENSE.
20 */
21
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
25
26#define CONFIGURE_INIT
27#include "system.h"
28
29const char rtems_test_name[] = "SPEDFSCHED 2";
30
31rtems_task_priority Prio[7] = { 0,   2,   2,   2,   2,  100, 1 };
32
33rtems_task Init(
34  rtems_task_argument argument
35)
36{
37  uint32_t    index;
38  rtems_status_code status;
39
40  Priorities = Prio;
41
42  TEST_BEGIN();
43
44  Task_name[ 1 ] =  rtems_build_name( 'T', 'A', '1', ' ' );
45  Task_name[ 2 ] =  rtems_build_name( 'T', 'A', '2', ' ' );
46  Task_name[ 3 ] =  rtems_build_name( 'T', 'A', '3', ' ' );
47  Task_name[ 4 ] =  rtems_build_name( 'T', 'A', '4', ' ' );
48  Task_name[ 5 ] =  rtems_build_name( 'T', 'A', '5', ' ' );
49  Task_name[ 6 ] =  rtems_build_name( 'T', 'A', '6', ' ' );
50
51  for ( index = 1 ; index <= 6 ; index++ ) {
52    status = rtems_task_create(
53      Task_name[ index ],
54      Priorities[ index ],
55      RTEMS_MINIMUM_STACK_SIZE * 4,
56      RTEMS_DEFAULT_MODES,
57      RTEMS_DEFAULT_ATTRIBUTES,
58      &Task_id[ index ]
59    );
60    directive_failed( status, "rtems_task_create loop" );
61  }
62
63  for ( index = 1 ; index <= 6 ; index++ ) {
64    status = rtems_task_start( Task_id[ index ], Task_1_through_6, 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  Count.count[ 6 ] = 0;
74
75  status = rtems_task_delete( RTEMS_SELF );
76  directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
77}
Note: See TracBrowser for help on using the repository browser.