source: rtems/c/src/ada/rtems-partition.ads @ 7b35a36

4.115
Last change on this file since 7b35a36 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1--
2--  RTEMS / Specification
3--
4--  DESCRIPTION:
5--
6--  This package provides the interface to the RTEMS API.
7--
8--  DEPENDENCIES:
9--
10--  NOTES:
11--    RTEMS initialization and configuration are called from
12--    the BSP side, therefore should never be called from ADA.
13--
14--  COPYRIGHT (c) 1997-2011.
15--  On-Line Applications Research Corporation (OAR).
16--
17--  The license and distribution terms for this file may in
18--  the file LICENSE in this distribution or at
19--  http://www.rtems.org/license/LICENSE.
20--
21
22package RTEMS.Partition is
23
24   --
25   --  Partition Manager
26   --
27
28   procedure Create (
29      Name             : in     RTEMS.Name;
30      Starting_Address : in     RTEMS.Address;
31      Length           : in     RTEMS.Unsigned32;
32      Buffer_Size      : in     RTEMS.Unsigned32;
33      Attribute_Set    : in     RTEMS.Attribute;
34      ID               :    out RTEMS.ID;
35      Result           :    out RTEMS.Status_Codes
36   );
37
38   procedure Ident (
39      Name   : in     RTEMS.Name;
40      Node   : in     RTEMS.Unsigned32;
41      ID     :    out RTEMS.ID;
42      Result :    out RTEMS.Status_Codes
43   );
44
45   procedure Delete (
46      ID     : in     RTEMS.ID;
47      Result :    out RTEMS.Status_Codes
48   );
49
50   procedure Get_Buffer (
51      ID     : in     RTEMS.ID;
52      Buffer :    out RTEMS.Address;
53      Result :    out RTEMS.Status_Codes
54   );
55
56   procedure Return_Buffer (
57      ID     : in     RTEMS.ID;
58      Buffer : in     RTEMS.Address;
59      Result :    out RTEMS.Status_Codes
60   );
61
62end RTEMS.Partition;
63
Note: See TracBrowser for help on using the repository browser.