File: /home/oboss/Users/gec/sources/Demonstrator/Onboard_Storage/low_priority_store.ads

1     --% Compilation Unit:	Low_Priority_Store
2     --
3     --% Category: Generic Package Instantiation
4     --
5     --% Release:  $Name:  $
6     --
7     --% Version:  $Revision: 2.1 $
8     --
9     --% Author:   $Author: gec $
10     --
11     --% Revision Log:
12     --    $Log: low_priority_store.ads,v $
13     --    Revision 2.1  2004/02/13 16:16:37  gec
14     --    Merged results of Demonstrator development on to main OBOSS trunk.
15     --
16     --    Revision 2.0.12.1  2003/12/19 10:45:46  gec
17     --    Updated Onboard Storage application process according to Demonstrator Specification.
18     --
19     --
20     --% Project: OBOSS
21     --
22     --% Copyright (C) 2003 by Terma A/S
23     --  Proprietary and intellectual rights of Terma A/S, Denmark,
24     --  are involved in the subject-matter of this material and
25     --  all manufacturing, reproduction, use, disclosure, and
26     --  sales rights pertaining to such subject-matter are
27     --  expressly reserved. This material is submitted for a
28     --  specific purpose as agreed, and the recipient by
29     --  accepting this material agrees that this material will
30     --  not be used, copied, or reproduced in whole or in part
31     --  nor its contents revealed in any manner or to any person,
32     --  except to meet the purpose for which it was submitted and
33     --  subject to the terms of the agreement.
34     --
35     --% Target Dependencies:
36     --    None
37     --% Compiler Dependencies:
38     --    None
39     --% Library Package:
40     --    Interface to a bounded packet store (Low_Priority_Store)
41     
42     with Packet_Store;
43     with Packet_Store_Types;
44     with Onboard_Storage.Parameters;
45     package Low_Priority_Store is new Packet_Store
46              (My_APID     => Onboard_Storage.Parameters.Application_ID,
47               Strategy    => Packet_Store_Types.Bounded,
48               Max_Packets => Onboard_Storage.Parameters.Stores.Low_Priority.Size);
49