gcc/
[official-gcc.git] / gcc / ada / s-osprim-vms.adb
blob5fa499bd13f7339725a3bab2a733b05190bc066a
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- S Y S T E M . O S _ P R I M I T I V E S --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1998-2012, Free Software Foundation, Inc. --
10 -- --
11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 -- This is the OpenVMS/Alpha version of this file
34 with System.Aux_DEC;
36 package body System.OS_Primitives is
38 --------------------------------------
39 -- Local functions and declarations --
40 --------------------------------------
42 function Get_GMToff return Integer;
43 pragma Import (C, Get_GMToff, "get_gmtoff");
44 -- Get the offset from GMT for this timezone
46 function VMS_Epoch_Offset return Long_Integer;
47 pragma Inline (VMS_Epoch_Offset);
48 -- The offset between the Unix Epoch and the VMS Epoch
50 subtype Cond_Value_Type is System.Aux_DEC.Unsigned_Longword;
51 -- Condition Value return type
53 ----------------------
54 -- VMS_Epoch_Offset --
55 ----------------------
57 function VMS_Epoch_Offset return Long_Integer is
58 begin
59 return 10_000_000 * (3_506_716_800 + Long_Integer (Get_GMToff));
60 end VMS_Epoch_Offset;
62 ----------------
63 -- Sys_Schdwk --
64 ----------------
66 -- Schedule Wakeup
68 -- status = returned status
69 -- pidadr = address of process id to be woken up
70 -- prcnam = name of process to be woken up
71 -- daytim = time to wake up
72 -- reptim = repetition interval of wakeup calls
75 procedure Sys_Schdwk
77 Status : out Cond_Value_Type;
78 Pidadr : Address := Null_Address;
79 Prcnam : String := String'Null_Parameter;
80 Daytim : Long_Integer;
81 Reptim : Long_Integer := Long_Integer'Null_Parameter
84 pragma Import (External, Sys_Schdwk);
85 -- VMS system call to schedule a wakeup event
86 pragma Import_Valued_Procedure
87 (Sys_Schdwk, "SYS$SCHDWK",
88 (Cond_Value_Type, Address, String, Long_Integer, Long_Integer),
89 (Value, Value, Descriptor (S), Reference, Reference)
92 ----------------
93 -- Sys_Gettim --
94 ----------------
96 -- Get System Time
98 -- status = returned status
99 -- tim = current system time
102 procedure Sys_Gettim
104 Status : out Cond_Value_Type;
105 Tim : out OS_Time
107 -- VMS system call to get the current system time
108 pragma Import (External, Sys_Gettim);
109 pragma Import_Valued_Procedure
110 (Sys_Gettim, "SYS$GETTIM",
111 (Cond_Value_Type, OS_Time),
112 (Value, Reference)
115 ---------------
116 -- Sys_Hiber --
117 ---------------
119 -- Hibernate (until woken up)
121 -- status = returned status
123 procedure Sys_Hiber (Status : out Cond_Value_Type);
124 -- VMS system call to hibernate the current process
125 pragma Import (External, Sys_Hiber);
126 pragma Import_Valued_Procedure
127 (Sys_Hiber, "SYS$HIBER",
128 (Cond_Value_Type),
129 (Value)
132 -----------
133 -- Clock --
134 -----------
136 function OS_Clock return OS_Time is
137 Status : Cond_Value_Type;
138 T : OS_Time;
139 begin
140 Sys_Gettim (Status, T);
141 return (T);
142 end OS_Clock;
144 -----------
145 -- Clock --
146 -----------
148 function Clock return Duration is
149 begin
150 return To_Duration (OS_Clock, Absolute_Calendar);
151 end Clock;
153 ----------------
154 -- Initialize --
155 ----------------
157 procedure Initialize is
158 begin
159 null;
160 end Initialize;
162 ---------------------
163 -- Monotonic_Clock --
164 ---------------------
166 function Monotonic_Clock return Duration renames Clock;
168 -----------------
169 -- Timed_Delay --
170 -----------------
172 procedure Timed_Delay
173 (Time : Duration;
174 Mode : Integer)
176 Sleep_Time : OS_Time;
177 Status : Cond_Value_Type;
178 pragma Unreferenced (Status);
180 begin
181 Sleep_Time := To_OS_Time (Time, Mode);
182 Sys_Schdwk (Status => Status, Daytim => Sleep_Time);
183 Sys_Hiber (Status);
184 end Timed_Delay;
186 -----------------
187 -- To_Duration --
188 -----------------
190 function To_Duration (T : OS_Time; Mode : Integer) return Duration is
191 pragma Warnings (Off, Mode);
192 begin
193 return Duration'Fixed_Value (T - VMS_Epoch_Offset) * 100;
194 end To_Duration;
196 ----------------
197 -- To_OS_Time --
198 ----------------
200 function To_OS_Time (D : Duration; Mode : Integer) return OS_Time is
201 begin
202 if Mode = Relative then
203 return -(Long_Integer'Integer_Value (D) / 100);
204 else
205 return Long_Integer'Integer_Value (D) / 100 + VMS_Epoch_Offset;
206 end if;
207 end To_OS_Time;
209 end System.OS_Primitives;