source: rtems/testsuites/ada/sptests/sp12/sp12.adb @ bc96f3b4

5
Last change on this file since bc96f3b4 was bc96f3b4, checked in by Sebastian Huber <sebastian.huber@…>, on 01/23/18 at 08:53:06

ada: Introduce RTEMS.Size type

Some time ago the Classic API object size related parameters were
changed to use size_t. Reflect this in the Ada bindings.

Update #3082.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1--
2--  MAIN / BODY
3--
4--  DESCRIPTION:
5--
6--  This is the entry point for Test SP12 of the Single Processor Test Suite.
7--
8--  DEPENDENCIES:
9--
10-- 
11--
12--  COPYRIGHT (c) 1989-2011.
13--  On-Line Applications Research Corporation (OAR).
14--
15--  The license and distribution terms for this file may in
16--  the file LICENSE in this distribution or at
17--  http://www.rtems.org/license/LICENSE.
18--
19
20with Interfaces; use Interfaces;
21with RTEMS;
22with RTEMS.TASKS;
23with SPTEST;
24with TEST_SUPPORT;
25with Interfaces.C;
26use Interfaces.C;
27
28procedure SP12 is
29  INIT_ID : RTEMS.ID;
30  STATUS  : RTEMS.STATUS_CODES;
31begin
32
33   RTEMS.TASKS.CREATE(
34      RTEMS.BUILD_NAME(  'I', 'N', 'I', 'T' ),
35      1,
36      RTEMS.MINIMUM_STACK_SIZE * 2,
37      RTEMS.NO_PREEMPT,
38      RTEMS.DEFAULT_ATTRIBUTES,
39      INIT_ID,
40      STATUS
41   );
42   TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "TASK_CREATE OF INIT" );
43
44
45   RTEMS.TASKS.START(
46      INIT_ID,
47      SPTEST.INIT'ACCESS,
48      0,
49      STATUS
50   );
51   TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "TASK_START OF INIT" );
52
53   loop
54      delay 120.0;
55   end loop;
56
57end SP12;
58
Note: See TracBrowser for help on using the repository browser.