1 |
294 |
jeremybenn |
-- IMPDEFD.A
|
2 |
|
|
--
|
3 |
|
|
-- Grant of Unlimited Rights
|
4 |
|
|
--
|
5 |
|
|
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
|
6 |
|
|
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
|
7 |
|
|
-- unlimited rights in the software and documentation contained herein.
|
8 |
|
|
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
|
9 |
|
|
-- this public release, the Government intends to confer upon all
|
10 |
|
|
-- recipients unlimited rights equal to those held by the Government.
|
11 |
|
|
-- These rights include rights to use, duplicate, release or disclose the
|
12 |
|
|
-- released technical data and computer software in whole or in part, in
|
13 |
|
|
-- any manner and for any purpose whatsoever, and to have or permit others
|
14 |
|
|
-- to do so.
|
15 |
|
|
--
|
16 |
|
|
-- DISCLAIMER
|
17 |
|
|
--
|
18 |
|
|
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
|
19 |
|
|
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
|
20 |
|
|
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
|
21 |
|
|
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
|
22 |
|
|
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
|
23 |
|
|
-- PARTICULAR PURPOSE OF SAID MATERIAL.
|
24 |
|
|
--*
|
25 |
|
|
--
|
26 |
|
|
-- DESCRIPTION:
|
27 |
|
|
-- This package provides tailorable entities for a particular
|
28 |
|
|
-- implementation. Each entity may be modified to suit the needs
|
29 |
|
|
-- of the implementation. Default values are provided to act as
|
30 |
|
|
-- a guide.
|
31 |
|
|
--
|
32 |
|
|
-- The entities in this package are those which are used exclusively
|
33 |
|
|
-- in tests for Annex D (Real-Time Systems).
|
34 |
|
|
--
|
35 |
|
|
-- APPLICABILITY CRITERIA:
|
36 |
|
|
-- This package is only required for implementations validating the
|
37 |
|
|
-- Real-Time Systems Annex.
|
38 |
|
|
--
|
39 |
|
|
-- CHANGE HISTORY:
|
40 |
|
|
-- 29 Jan 96 SAIC Initial version for ACVC 2.1.
|
41 |
|
|
-- 27 Aug 98 EDS Removed Processor_Type value Time_Slice
|
42 |
|
|
--!
|
43 |
|
|
|
44 |
|
|
package ImpDef.Annex_D is
|
45 |
|
|
|
46 |
|
|
--=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====--
|
47 |
|
|
|
48 |
|
|
-- This constant is the maximum storage size that can be specified
|
49 |
|
|
-- for a task. A single task that has this size must be able to
|
50 |
|
|
-- run. Ideally, this value is large enough that two tasks of this
|
51 |
|
|
-- size cannot run at the same time. If the value is too small then
|
52 |
|
|
-- test CXDC001 may take longer to run. See the test for further
|
53 |
|
|
-- information.
|
54 |
|
|
|
55 |
|
|
Maximum_Task_Storage_Size : constant := 16_000_000;
|
56 |
|
|
-- ^^^^^^^^^^ --- MODIFY HERE AS NEEDED
|
57 |
|
|
|
58 |
|
|
--=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====--
|
59 |
|
|
|
60 |
|
|
-- Indicates the type of processor on which the tests are running.
|
61 |
|
|
|
62 |
|
|
type Processor_Type is (Uni_Processor, Multi_Processor);
|
63 |
|
|
|
64 |
|
|
Processor : constant Processor_Type := Uni_Processor;
|
65 |
|
|
-- ^^^^^^^^^^^ --- MODIFY HERE AS NEEDED
|
66 |
|
|
|
67 |
|
|
--=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====-=====--
|
68 |
|
|
|
69 |
|
|
end ImpDef.Annex_D;
|