1 ------------------------------------------------------------------------------
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . O S _ P R I M I T I V E S --
10 -- Copyright (C) 1998-2001 Free Software Foundation, Inc. --
12 -- GNARL is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNARL; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
30 -- GNARL was developed by the GNARL team at Florida State University. --
31 -- Extensive contributions were provided by Ada Core Technologies Inc. --
33 ------------------------------------------------------------------------------
35 -- This version is for POSIX-like operating systems
37 package body System
.OS_Primitives
is
39 -- ??? These definitions are duplicated from System.OS_Interface
40 -- because we don't want to depend on any package. Consider removing
41 -- these declarations in System.OS_Interface and move these ones in
44 type struct_timezone
is record
45 tz_minuteswest
: Integer;
48 pragma Convention
(C
, struct_timezone
);
49 type struct_timezone_ptr
is access all struct_timezone
;
51 type time_t
is new Integer;
53 type struct_timeval
is record
57 pragma Convention
(C
, struct_timeval
);
60 (tv
: access struct_timeval
;
61 tz
: struct_timezone_ptr
) return Integer;
62 pragma Import
(C
, gettimeofday
, "gettimeofday");
64 type timespec
is record
66 tv_nsec
: Long_Integer;
68 pragma Convention
(C
, timespec
);
70 function nanosleep
(rqtp
, rmtp
: access timespec
) return Integer;
71 pragma Import
(C
, nanosleep
, "nanosleep");
77 function Clock
return Duration is
78 TV
: aliased struct_timeval
;
82 Result
:= gettimeofday
(TV
'Access, null);
83 return Duration (TV
.tv_sec
) + Duration (TV
.tv_usec
) / 10#
1#E6
;
90 function Monotonic_Clock
return Duration renames Clock
;
96 function To_Timespec
(D
: Duration) return timespec
;
98 function To_Timespec
(D
: Duration) return timespec
is
103 S
:= time_t
(Long_Long_Integer (D
));
104 F
:= D
- Duration (S
);
106 -- If F has negative value due to a round-up, adjust for positive F
114 return timespec
' (tv_sec => S,
115 tv_nsec => Long_Integer (Long_Long_Integer (F * 10#1#E9)));
122 procedure Timed_Delay
126 Request : aliased timespec;
127 Remaind : aliased timespec;
131 Check_Time : Duration := Clock;
133 if Mode = Relative then
135 Abs_Time := Time + Check_Time;
137 Rel_Time := Time - Check_Time;
141 if Rel_Time > 0.0 then
143 Request := To_Timespec (Rel_Time);
144 Result := nanosleep (Request'Access, Remaind'Access);
147 exit when Abs_Time <= Check_Time;
149 Rel_Time := Abs_Time - Check_Time;
154 end System.OS_Primitives;