source: rtems/testsuites/sptests/sp16/init.c @ 8fbdf07

4.104.114.84.95
Last change on this file since 8fbdf07 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 3.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.OARcorp.com/rtems/license.html.
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  rtems_status_code status;
32
33  puts( "\n\n*** TEST 16 ***" );
34
35  Task_name[ 1 ] =  rtems_build_name( 'T', 'A', '1', ' ' );
36  Task_name[ 2 ] =  rtems_build_name( 'T', 'A', '2', ' ' );
37  Task_name[ 3 ] =  rtems_build_name( 'T', 'A', '3', ' ' );
38  Task_name[ 4 ] =  rtems_build_name( 'T', 'A', '4', ' ' );
39  Task_name[ 5 ] =  rtems_build_name( 'T', 'A', '5', ' ' );
40
41  status = rtems_task_create(
42    Task_name[ 1 ],
43    BASE_PRIORITY,
44    RTEMS_MINIMUM_STACK_SIZE * 2,
45    RTEMS_DEFAULT_MODES,
46    RTEMS_DEFAULT_ATTRIBUTES,
47    &Task_id[ 1 ]
48  );
49  directive_failed( status, "rtems_task_create of TA1" );
50
51  status = rtems_task_create(
52    Task_name[ 2 ],
53    BASE_PRIORITY,
54    RTEMS_MINIMUM_STACK_SIZE,
55    RTEMS_DEFAULT_MODES,
56    RTEMS_DEFAULT_ATTRIBUTES,
57    &Task_id[ 2 ]
58  );
59  directive_failed( status, "rtems_task_create of TA2" );
60
61  status = rtems_task_create(
62    Task_name[ 3 ],
63    BASE_PRIORITY,
64    RTEMS_MINIMUM_STACK_SIZE,
65    RTEMS_DEFAULT_MODES,
66    RTEMS_DEFAULT_ATTRIBUTES,
67    &Task_id[ 3 ]
68  );
69  directive_failed( status, "rtems_task_create of TA3" );
70
71  status = rtems_task_start( Task_id[ 1 ], Task_1, 0 );
72  directive_failed( status, "rtems_task_start of TA1" );
73
74  status = rtems_task_start( Task_id[ 2 ], Task_2, 0 );
75  directive_failed( status, "rtems_task_start of TA2" );
76
77  status = rtems_task_start( Task_id[ 3 ], Task_3, 0 );
78  directive_failed( status, "rtems_task_start of TA3" );
79
80  Region_name[ 1 ] = rtems_build_name( 'R', 'N', '1', ' ' );
81  Region_name[ 2 ] = rtems_build_name( 'R', 'N', '2', ' ' );
82  Region_name[ 3 ] = rtems_build_name( 'R', 'N', '3', ' ' );
83  Region_name[ 4 ] = rtems_build_name( 'R', 'N', '4', ' ' );
84
85  status = rtems_region_create(
86    Region_name[ 1 ],
87    Area_1,
88    4096,
89    128,
90    RTEMS_DEFAULT_ATTRIBUTES,
91    &Region_id[ 1 ]
92  );
93  directive_failed( status, "rtems_region_create of RN1" );
94
95  status = rtems_region_create(
96    Region_name[ 2 ],
97    Area_2,
98    4096,
99    128,
100    RTEMS_PRIORITY,
101    &Region_id[ 2 ]
102  );
103  directive_failed( status, "rtems_region_create of RN2" );
104
105  status = rtems_region_create(
106    Region_name[ 3 ],
107    Area_3,
108    4096,
109    128,
110    RTEMS_DEFAULT_ATTRIBUTES,
111    &Region_id[ 3 ]
112  );
113  directive_failed( status, "rtems_region_create of RN3" );
114
115  status = rtems_region_create(
116    Region_name[ 4 ],
117    Area_4,
118    4096,
119    128,
120    RTEMS_DEFAULT_ATTRIBUTES,
121    &Region_id[ 4 ]
122  );
123  directive_failed( status, "rtems_region_create of RN4" );
124
125  status = rtems_task_delete( RTEMS_SELF );
126  directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
127}
Note: See TracBrowser for help on using the repository browser.