source: rtems/testsuites/sptests/spedfsched02/init.c @ 03b2163

5
Last change on this file since 03b2163 was 03b2163, checked in by Sebastian Huber <sebastian.huber@…>, on 03/01/19 at 09:10:19

score: Fix _Scheduler_EDF_Cancel_job()

Remove the priority node only in case it is active.

  • 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-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
33static void test_period_create_delete( void )
34{
35  rtems_status_code sc;
36  rtems_id id;
37
38  sc = rtems_rate_monotonic_create(
39    rtems_build_name( 'R', 'T', 'M', 'N' ),
40    &id
41  );
42  rtems_test_assert( sc == RTEMS_SUCCESSFUL );
43
44  sc = rtems_rate_monotonic_delete( id );
45  rtems_test_assert( sc == RTEMS_SUCCESSFUL );
46}
47
48rtems_task Init(
49  rtems_task_argument argument
50)
51{
52  uint32_t    index;
53  rtems_status_code status;
54
55  Priorities = Prio;
56
57  TEST_BEGIN();
58
59  test_period_create_delete();
60
61  Task_name[ 1 ] =  rtems_build_name( 'T', 'A', '1', ' ' );
62  Task_name[ 2 ] =  rtems_build_name( 'T', 'A', '2', ' ' );
63  Task_name[ 3 ] =  rtems_build_name( 'T', 'A', '3', ' ' );
64  Task_name[ 4 ] =  rtems_build_name( 'T', 'A', '4', ' ' );
65  Task_name[ 5 ] =  rtems_build_name( 'T', 'A', '5', ' ' );
66  Task_name[ 6 ] =  rtems_build_name( 'T', 'A', '6', ' ' );
67
68  for ( index = 1 ; index <= 6 ; index++ ) {
69    status = rtems_task_create(
70      Task_name[ index ],
71      Priorities[ index ],
72      RTEMS_MINIMUM_STACK_SIZE,
73      RTEMS_DEFAULT_MODES,
74      RTEMS_DEFAULT_ATTRIBUTES,
75      &Task_id[ index ]
76    );
77    directive_failed( status, "rtems_task_create loop" );
78  }
79
80  for ( index = 1 ; index <= 6 ; index++ ) {
81    status = rtems_task_start( Task_id[ index ], Task_1_through_6, index );
82    directive_failed( status, "rtems_task_start loop" );
83  }
84
85  Count.count[ 1 ] = 0;
86  Count.count[ 2 ] = 0;
87  Count.count[ 3 ] = 0;
88  Count.count[ 4 ] = 0;
89  Count.count[ 5 ] = 0;
90  Count.count[ 6 ] = 0;
91
92  rtems_task_exit();
93}
Note: See TracBrowser for help on using the repository browser.