OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [sptests/] [sp16/] [init.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  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: init.c,v 1.2 2001-09-27 12:02:33 chris Exp $
22
 */
23
 
24
#define TEST_INIT
25
#include "system.h"
26
 
27
rtems_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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.