1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . O S _ I N T E R F A C E --
9 -- Copyright (C) 1999-2015, Free Software Foundation, Inc. --
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. --
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. --
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/>. --
27 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
30 ------------------------------------------------------------------------------
32 -- This is a Darwin Threads version of this package
35 -- Turn off polling, we do not want ATC polling to take place during
36 -- tasking operations. It causes infinite loops and other problems.
38 with Interfaces
.C
.Extensions
;
40 package body System
.OS_Interface
is
42 use Interfaces
.C
.Extensions
;
48 function To_Duration
(TS
: timespec
) return Duration is
50 return Duration (TS
.tv_sec
) + Duration (TS
.tv_nsec
) / 10#
1#E9
;
53 ------------------------
54 -- To_Target_Priority --
55 ------------------------
57 function To_Target_Priority
58 (Prio
: System
.Any_Priority
) return Interfaces
.C
.int
61 return Interfaces
.C
.int
(Prio
);
62 end To_Target_Priority
;
68 function To_Timespec
(D
: Duration) return timespec
is
73 S
:= time_t
(Long_Long_Integer (D
));
74 F
:= D
- Duration (S
);
76 -- If F has negative value due to a round-up, adjust for positive F
84 return timespec
'(tv_sec => S,
85 tv_nsec => long (Long_Long_Integer (F * 10#1#E9)));
92 function clock_gettime
93 (clock_id : clockid_t;
94 tp : access timespec) return int
96 pragma Unreferenced (clock_id);
98 -- Darwin Threads don't have clock_gettime, so use gettimeofday
102 type timeval is array (1 .. 3) of C.long;
103 -- The timeval array is sized to contain long_long sec and long usec.
104 -- If long_long'Size = long'Size then it will be overly large but that
105 -- won't effect the implementation since it's not accessed directly.
107 procedure timeval_to_duration
108 (T : not null access timeval;
109 sec : not null access C.Extensions.long_long;
110 usec : not null access C.long);
111 pragma Import (C, timeval_to_duration, "__gnat_timeval_to_duration");
113 Micro : constant := 10**6;
114 sec : aliased C.Extensions.long_long;
115 usec : aliased C.long;
116 TV : aliased timeval;
119 function gettimeofday
120 (Tv : access timeval;
121 Tz : System.Address := System.Null_Address) return int;
122 pragma Import (C, gettimeofday, "gettimeofday");
125 Result := gettimeofday (TV'Access, System.Null_Address);
126 pragma Assert (Result = 0);
127 timeval_to_duration (TV'Access, sec'Access, usec'Access);
128 tp.all := To_Timespec (Duration (sec) + Duration (usec) / Micro);
136 function clock_getres
137 (clock_id : clockid_t;
138 res : access timespec) return int
140 pragma Unreferenced (clock_id);
142 -- Darwin Threads don't have clock_getres.
144 Nano : constant := 10**9;
148 function clock_get_res return int;
149 pragma Import (C, clock_get_res, "__gnat_clock_get_res");
152 nsec := clock_get_res;
153 res.all := To_Timespec (Duration (0.0) + Duration (nsec) / Nano);
166 function sched_yield return int is
167 procedure sched_yield_base (arg : System.Address);
168 pragma Import (C, sched_yield_base, "pthread_yield_np");
171 sched_yield_base (System.Null_Address);
179 procedure pthread_init is
188 function Get_Stack_Base (thread : pthread_t) return Address is
189 pragma Unreferenced (thread);
191 return System.Null_Address;
194 end System.OS_Interface;