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 uses gettimeofday and select
36 -- Currently OpenNT, Dec Unix, Solaris and SCO UnixWare use this file.
38 package body System
.OS_Primitives
is
40 -- ??? These definitions are duplicated from System.OS_Interface
41 -- because we don't want to depend on any package. Consider removing
42 -- these declarations in System.OS_Interface and move these ones in
45 type struct_timezone
is record
46 tz_minuteswest
: Integer;
49 pragma Convention
(C
, struct_timezone
);
50 type struct_timezone_ptr
is access all struct_timezone
;
52 type struct_timeval
is record
56 pragma Convention
(C
, struct_timeval
);
59 (tv
: access struct_timeval
;
60 tz
: struct_timezone_ptr
) return Integer;
61 pragma Import
(C
, gettimeofday
, "gettimeofday");
63 type fd_set
is null record;
64 type fd_set_ptr
is access all fd_set
;
70 exceptfds
: fd_set_ptr
:= null;
71 timeout
: access struct_timeval
) return Integer;
72 pragma Import
(C
, C_select
, "select");
78 function Clock
return Duration is
79 TV
: aliased struct_timeval
;
83 Result
:= gettimeofday
(TV
'Access, null);
84 return Duration (TV
.tv_sec
) + Duration (TV
.tv_usec
) / 10#
1#E6
;
91 function Monotonic_Clock
return Duration renames Clock
;
104 Check_Time
: Duration := Clock
;
105 timeval
: aliased struct_timeval
;
108 if Mode
= Relative
then
110 Abs_Time
:= Time
+ Check_Time
;
112 Rel_Time
:= Time
- Check_Time
;
116 if Rel_Time
> 0.0 then
118 timeval
.tv_sec
:= Integer (Rel_Time
);
120 if Duration (timeval
.tv_sec
) > Rel_Time
then
121 timeval
.tv_sec
:= timeval
.tv_sec
- 1;
125 Integer ((Rel_Time
- Duration (timeval
.tv_sec
)) * 10#
1#E6
);
127 Result
:= C_select
(timeout
=> timeval
'Unchecked_Access);
130 exit when Abs_Time
<= Check_Time
;
132 Rel_Time
:= Abs_Time
- Check_Time
;
137 end System
.OS_Primitives
;