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-2009, 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 package body System
.OS_Interface
is
46 function To_Duration
(TS
: timespec
) return Duration is
48 return Duration (TS
.tv_sec
) + Duration (TS
.tv_nsec
) / 10#
1#E9
;
51 ------------------------
52 -- To_Target_Priority --
53 ------------------------
55 function To_Target_Priority
56 (Prio
: System
.Any_Priority
) return Interfaces
.C
.int
59 return Interfaces
.C
.int
(Prio
);
60 end To_Target_Priority
;
66 function To_Timespec
(D
: Duration) return timespec
is
71 S
:= time_t
(Long_Long_Integer (D
));
72 F
:= D
- Duration (S
);
74 -- If F has negative value due to a round-up, adjust for positive F
82 return timespec
'(tv_sec => S,
83 tv_nsec => long (Long_Long_Integer (F * 10#1#E9)));
90 function clock_gettime
91 (clock_id : clockid_t;
92 tp : access timespec) return int
94 pragma Unreferenced (clock_id);
96 -- Darwin Threads don't have clock_gettime, so use gettimeofday
100 type timeval is array (1 .. 2) of C.long;
102 procedure timeval_to_duration
103 (T : not null access timeval;
104 sec : not null access C.long;
105 usec : not null access C.long);
106 pragma Import (C, timeval_to_duration, "__gnat_timeval_to_duration");
108 Micro : constant := 10**6;
109 sec : aliased C.long;
110 usec : aliased C.long;
111 TV : aliased timeval;
114 function gettimeofday
115 (Tv : access timeval;
116 Tz : System.Address := System.Null_Address) return int;
117 pragma Import (C, gettimeofday, "gettimeofday");
120 Result := gettimeofday (TV'Access, System.Null_Address);
121 pragma Assert (Result = 0);
122 timeval_to_duration (TV'Access, sec'Access, usec'Access);
123 tp.all := To_Timespec (Duration (sec) + Duration (usec) / Micro);
131 function sched_yield return int is
132 procedure sched_yield_base (arg : System.Address);
133 pragma Import (C, sched_yield_base, "pthread_yield_np");
136 sched_yield_base (System.Null_Address);
144 function lwp_self return Address is
145 function pthread_mach_thread_np (thread : pthread_t) return Address;
146 pragma Import (C, pthread_mach_thread_np, "pthread_mach_thread_np");
148 return pthread_mach_thread_np (pthread_self);
155 procedure pthread_init is
164 function Get_Stack_Base (thread : pthread_t) return Address is
165 pragma Unreferenced (thread);
167 return System.Null_Address;
170 end System.OS_Interface;