summaryrefslogtreecommitdiffstats
path: root/cpukit/include/adainclude/rtems-timer.adb
blob: c6f115d8630f1246a5ac001a7205313bacf91cb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
--
--  RTEMS / Body
--
--  DESCRIPTION:
--
--  This package provides the interface to the RTEMS API.
--
--
--  DEPENDENCIES:
--
--
--
--  COPYRIGHT (c) 1997-2008.
--  On-Line Applications Research Corporation (OAR).
--
--  The license and distribution terms for this file may in
--  the file LICENSE in this distribution or at
--  http://www.rtems.org/license/LICENSE.
--

package body RTEMS.Timer is

   --
   -- Timer Manager
   --

   procedure Create
     (Name   : in RTEMS.Name;
      ID     : out RTEMS.ID;
      Result : out RTEMS.Status_Codes)
   is
      function Create_Base
        (Name : RTEMS.Name;
         ID   : access RTEMS.ID)
         return RTEMS.Status_Codes;
      pragma Import (C, Create_Base, "rtems_timer_create");
      ID_Base : aliased RTEMS.ID;
   begin

      Result := Create_Base (Name, ID_Base'Access);
      ID     := ID_Base;

   end Create;

   procedure Ident
     (Name   : in RTEMS.Name;
      ID     : out RTEMS.ID;
      Result : out RTEMS.Status_Codes)
   is
      function Ident_Base
        (Name : RTEMS.Name;
         ID   : access RTEMS.ID)
         return RTEMS.Status_Codes;
      pragma Import (C, Ident_Base, "rtems_timer_ident");
      ID_Base : aliased RTEMS.ID;
   begin

      Result := Ident_Base (Name, ID_Base'Access);
      ID     := ID_Base;

   end Ident;

   procedure Delete
     (ID     : in RTEMS.ID;
      Result : out RTEMS.Status_Codes)
   is
      function Delete_Base (ID : RTEMS.ID) return RTEMS.Status_Codes;
      pragma Import (C, Delete_Base, "rtems_timer_delete");
   begin

      Result := Delete_Base (ID);

   end Delete;

   procedure Fire_After
     (ID        : in RTEMS.ID;
      Ticks     : in RTEMS.Interval;
      Routine   : in RTEMS.Timer.Service_Routine;
      User_Data : in RTEMS.Address;
      Result    : out RTEMS.Status_Codes)
   is
      function Fire_After_Base
        (ID        : RTEMS.ID;
         Ticks     : RTEMS.Interval;
         Routine   : RTEMS.Timer.Service_Routine;
         User_Data : RTEMS.Address)
         return      RTEMS.Status_Codes;
      pragma Import (C, Fire_After_Base, "rtems_timer_fire_after");
   begin

      Result := Fire_After_Base (ID, Ticks, Routine, User_Data);

   end Fire_After;

   procedure Server_Fire_After
     (ID        : in RTEMS.ID;
      Ticks     : in RTEMS.Interval;
      Routine   : in RTEMS.Timer.Service_Routine;
      User_Data : in RTEMS.Address;
      Result    : out RTEMS.Status_Codes)
   is
      function Server_Fire_After_Base
        (ID        : RTEMS.ID;
         Ticks     : RTEMS.Interval;
         Routine   : RTEMS.Timer.Service_Routine;
         User_Data : RTEMS.Address)
         return      RTEMS.Status_Codes;
      pragma Import
        (C,
         Server_Fire_After_Base,
         "rtems_timer_server_fire_after");
   begin

      Result := Server_Fire_After_Base (ID, Ticks, Routine, User_Data);

   end Server_Fire_After;

   procedure Fire_When
     (ID        : in RTEMS.ID;
      Wall_Time : in RTEMS.Time_Of_Day;
      Routine   : in RTEMS.Timer.Service_Routine;
      User_Data : in RTEMS.Address;
      Result    : out RTEMS.Status_Codes)
   is
      function Fire_When_Base
        (ID        : RTEMS.ID;
         Wall_Time : RTEMS.Time_Of_Day;
         Routine   : RTEMS.Timer.Service_Routine;
         User_Data : RTEMS.Address)
         return      RTEMS.Status_Codes;
      pragma Import (C, Fire_When_Base, "rtems_timer_fire_when");
   begin

      Result := Fire_When_Base (ID, Wall_Time, Routine, User_Data);

   end Fire_When;

   procedure Server_Fire_When
     (ID        : in RTEMS.ID;
      Wall_Time : in RTEMS.Time_Of_Day;
      Routine   : in RTEMS.Timer.Service_Routine;
      User_Data : in RTEMS.Address;
      Result    : out RTEMS.Status_Codes)
   is
      function Server_Fire_When_Base
        (ID        : RTEMS.ID;
         Wall_Time : RTEMS.Time_Of_Day;
         Routine   : RTEMS.Timer.Service_Routine;
         User_Data : RTEMS.Address)
         return      RTEMS.Status_Codes;
      pragma Import
        (C,
         Server_Fire_When_Base,
         "rtems_timer_server_fire_when");
   begin

      Result :=
         Server_Fire_When_Base (ID, Wall_Time, Routine, User_Data);
   end Server_Fire_When;

   procedure Reset
     (ID     : in RTEMS.ID;
      Result : out RTEMS.Status_Codes)
   is
      function Reset_Base (ID : RTEMS.ID) return RTEMS.Status_Codes;
      pragma Import (C, Reset_Base, "rtems_timer_reset");
   begin

      Result := Reset_Base (ID);

   end Reset;

   procedure Cancel
     (ID     : in RTEMS.ID;
      Result : out RTEMS.Status_Codes)
   is
      function Cancel_Base (ID : RTEMS.ID) return RTEMS.Status_Codes;
      pragma Import (C, Cancel_Base, "rtems_timer_cancel");
   begin

      Result := Cancel_Base (ID);

   end Cancel;

   procedure Initiate_Server
     (Server_Priority : in RTEMS.Tasks.Priority;
      Stack_Size      : in RTEMS.Size;
      Attribute_Set   : in RTEMS.Attribute;
      Result          : out RTEMS.Status_Codes)
   is
      function Initiate_Server_Base
        (Server_Priority : RTEMS.Tasks.Priority;
         Stack_Size      : RTEMS.Size;
         Attribute_Set   : RTEMS.Attribute)
         return            RTEMS.Status_Codes;
      pragma Import
        (C,
         Initiate_Server_Base,
         "rtems_timer_initiate_server");
   begin
      Result :=
         Initiate_Server_Base
           (Server_Priority,
            Stack_Size,
            Attribute_Set);
   end Initiate_Server;

end RTEMS.Timer;