source: rtems/c/src/ada/rtems-io.ads @ 1987020

4.115
Last change on this file since 1987020 was 1987020, checked in by Joel Sherrill <joel.sherrill@…>, on 02/16/11 at 15:52:29

2011-02-16 Joel Sherrill <joel.sherrill@…>

  • ada/Makefile.am, ada/preinstall.am, ada/rtems.adb, ada/rtems.ads: Split RTEMS Ada95 binding into a master package and a child package per Manager. This is better Ada style.
  • ada/rtems-barrier.adb, ada/rtems-barrier.ads, ada/rtems-clock.adb, ada/rtems-clock.ads, ada/rtems-cpu_usage.ads, ada/rtems-debug.adb, ada/rtems-debug.ads, ada/rtems-event.adb, ada/rtems-event.ads, ada/rtems-extension.adb, ada/rtems-extension.ads, ada/rtems-fatal.adb, ada/rtems-fatal.ads, ada/rtems-interrupt.ads, ada/rtems-io.adb, ada/rtems-io.ads, ada/rtems-message_queue.adb, ada/rtems-message_queue.ads, ada/rtems-object.adb, ada/rtems-object.ads, ada/rtems-partition.adb, ada/rtems-partition.ads, ada/rtems-port.adb, ada/rtems-port.ads, ada/rtems-rate_monotonic.adb, ada/rtems-rate_monotonic.ads, ada/rtems-region.adb, ada/rtems-region.ads, ada/rtems-semaphore.adb, ada/rtems-semaphore.ads, ada/rtems-signal.adb, ada/rtems-signal.ads, ada/rtems-stack_checker.ads, ada/rtems-tasks.adb, ada/rtems-tasks.ads, ada/rtems-timer.adb, ada/rtems-timer.ads: New files.
  • Property mode set to 100644
File size: 2.3 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.com/license/LICENSE.
20--
21--  $Id$
22--
23
24with System;
25with System.Storage_Elements; use System.Storage_Elements;
26with Interfaces;
27with Interfaces.C;
28
29package RTEMS.IO is
30
31   --
32   --  Input/Output Manager
33   --
34
35   procedure Register_Name (
36      Name   : in     String;
37      Major  : in     RTEMS.Device_Major_Number;
38      Minor  : in     RTEMS.Device_Minor_Number;
39      Result :    out RTEMS.Status_Codes
40   );
41
42   procedure Lookup_Name (
43      Name         : in     String;
44      Device_Info  :    out RTEMS.Driver_Name_t;
45      Result       :    out RTEMS.Status_Codes
46   );
47
48   procedure Open (
49      Major        : in     RTEMS.Device_Major_Number;
50      Minor        : in     RTEMS.Device_Minor_Number;
51      Argument     : in     RTEMS.Address;
52      Result       :    out RTEMS.Status_Codes
53   );
54   pragma Inline (Open);
55
56   procedure Close (
57      Major        : in     RTEMS.Device_Major_Number;
58      Minor        : in     RTEMS.Device_Minor_Number;
59      Argument     : in     RTEMS.Address;
60      Result       :    out RTEMS.Status_Codes
61   );
62   pragma Inline (Close);
63
64   procedure Read (
65      Major        : in     RTEMS.Device_Major_Number;
66      Minor        : in     RTEMS.Device_Minor_Number;
67      Argument     : in     RTEMS.Address;
68      Result       :    out RTEMS.Status_Codes
69   );
70   pragma Inline (Read);
71
72   procedure Write (
73      Major        : in     RTEMS.Device_Major_Number;
74      Minor        : in     RTEMS.Device_Minor_Number;
75      Argument     : in     RTEMS.Address;
76      Result       :    out RTEMS.Status_Codes
77   );
78   pragma Inline (Write);
79
80   procedure Control (
81      Major        : in     RTEMS.Device_Major_Number;
82      Minor        : in     RTEMS.Device_Minor_Number;
83      Argument     : in     RTEMS.Address;
84      Result       :    out RTEMS.Status_Codes
85   );
86   pragma Inline (Control);
87
88end RTEMS.IO;
89
Note: See TracBrowser for help on using the repository browser.