File: /home/oboss/Users/gec/sources/Basic_Services/Mission_Parameters/globals.ads

1     --% Compilation Unit:	Globals
2     --
3     --% Category: Package Declaration
4     --
5     --% Release:  $Name:  $
6     --
7     --% Version:  $Revision: 2.1 $
8     --
9     --% Author:   $Author: gec $
10     --
11     --% Revision Log:
12     --    $Log: globals.ads,v $
13     --    Revision 2.1  2004/02/13 16:16:27  gec
14     --    Merged results of Demonstrator development on to main OBOSS trunk.
15     --
16     --    Revision 2.0.12.1  2004/02/12 09:41:01  gec
17     --    Decreased global stack size as heap was exhausted during elaboration.
18     --
19     --    Revision 2.0  2003/04/04 08:50:09  gec
20     --    Initial release of source files serving as baseline for OBOSS-III project.
21     --
22     --    Revision 1.1.1.1  2003/04/04 08:13:03  gec
23     --    Imported using TkCVS
24     --
25     --
26     --
27     --% Project: OBOSS
28     --
29     --% Copyright (C) 2003 by Terma A/S
30     --  Proprietary and intellectual rights of Terma A/S, Denmark,
31     --  are involved in the subject-matter of this material and
32     --  all manufacturing, reproduction, use, disclosure, and
33     --  sales rights pertaining to such subject-matter are
34     --  expressly reserved. This material is submitted for a
35     --  specific purpose as agreed, and the recipient by
36     --  accepting this material agrees that this material will
37     --  not be used, copied, or reproduced in whole or in part
38     --  nor its contents revealed in any manner or to any person,
39     --  except to meet the purpose for which it was submitted and
40     --  subject to the terms of the agreement.
41     --
42     --% Target Dependencies:
43     --    None
44     --% Compiler Dependencies:
45     --    None
46     with System;
47     
48     package Globals is
49     
50       Stack_Size : constant := 28_000;
51       Queue_Size : constant := 10;
52     
53       Circular_Buffer_Low_Level_Byte_Buffer_Size : constant Natural := 2_000;
54       Main_Task_Priority : constant  System.Priority := System.Priority'First;
55     
56     end Globals;
57