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-2018, 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
47 function To_Duration
(TS
: timespec
) return Duration is
49 return Duration (TS
.tv_sec
) + Duration (TS
.tv_nsec
) / 10#
1#E9
;
52 ------------------------
53 -- To_Target_Priority --
54 ------------------------
56 function To_Target_Priority
57 (Prio
: System
.Any_Priority
) return Interfaces
.C
.int
60 return Interfaces
.C
.int
(Prio
);
61 end To_Target_Priority
;
67 function To_Timespec
(D
: Duration) return timespec
is
72 S
:= time_t
(Long_Long_Integer (D
));
73 F
:= D
- Duration (S
);
75 -- If F has negative value due to a round-up, adjust for positive F
83 return timespec
'(tv_sec => S,
84 tv_nsec => long (Long_Long_Integer (F * 10#1#E9)));
91 function clock_gettime
92 (clock_id : clockid_t;
93 tp : access timespec) return int
95 pragma Unreferenced (clock_id);
97 -- Darwin Threads don't have clock_gettime, so use gettimeofday
101 type timeval is array (1 .. 3) of C.long;
102 -- The timeval array is sized to contain long_long sec and long usec.
103 -- If long_long'Size = long'Size then it will be overly large but that
104 -- won't effect the implementation since it's not accessed directly.
106 procedure timeval_to_duration
107 (T : not null access timeval;
108 sec : not null access C.Extensions.long_long;
109 usec : not null access C.long);
110 pragma Import (C, timeval_to_duration, "__gnat_timeval_to_duration");
112 Micro : constant := 10**6;
113 sec : aliased C.Extensions.long_long;
114 usec : aliased C.long;
115 TV : aliased timeval;
118 function gettimeofday
119 (Tv : access timeval;
120 Tz : System.Address := System.Null_Address) return int;
121 pragma Import (C, gettimeofday, "gettimeofday");
124 Result := gettimeofday (TV'Access, System.Null_Address);
125 pragma Assert (Result = 0);
126 timeval_to_duration (TV'Access, sec'Access, usec'Access);
127 tp.all := To_Timespec (Duration (sec) + Duration (usec) / Micro);
135 function clock_getres
136 (clock_id : clockid_t;
137 res : access timespec) return int
139 pragma Unreferenced (clock_id);
141 -- Darwin Threads don't have clock_getres.
143 Nano : constant := 10**9;
147 function clock_get_res return int;
148 pragma Import (C, clock_get_res, "__gnat_clock_get_res");
151 nsec := clock_get_res;
152 res.all := To_Timespec (Duration (0.0) + Duration (nsec) / Nano);
165 function sched_yield return int is
166 procedure sched_yield_base (arg : System.Address);
167 pragma Import (C, sched_yield_base, "pthread_yield_np");
170 sched_yield_base (System.Null_Address);
178 procedure pthread_init is
187 function Get_Stack_Base (thread : pthread_t) return Address is
188 pragma Unreferenced (thread);
190 return System.Null_Address;
193 end System.OS_Interface;