OSDN Git Service

2007-09-26 Thomas Quinot <quinot@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-osinte-freebsd.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                  GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS                --
4 --                                                                          --
5 --                   S Y S T E M . O S _ I N T E R F A C E                  --
6 --                                                                          --
7 --                                   B o d y                                --
8 --                                                                          --
9 --          Copyright (C) 1991-2007, Free Software Foundation, Inc.         --
10 --                                                                          --
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 2,  or (at your option) any later ver- --
14 -- sion. GNARL 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.  See the GNU General Public License --
17 -- for  more details.  You should have  received  a copy of the GNU General --
18 -- Public License  distributed with GNARL; see file COPYING.  If not, write --
19 -- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
20 -- Boston, MA 02110-1301, USA.                                              --
21 --                                                                          --
22 -- As a special exception,  if other files  instantiate  generics from this --
23 -- unit, or you link  this unit with other files  to produce an executable, --
24 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
25 -- covered  by the  GNU  General  Public  License.  This exception does not --
26 -- however invalidate  any other reasons why  the executable file  might be --
27 -- covered by the  GNU Public License.                                      --
28 --                                                                          --
29 -- GNARL was developed by the GNARL team at Florida State University. It is --
30 -- now maintained by Ada Core Technologies Inc. in cooperation with Florida --
31 -- State University (http://www.gnat.com).                                  --
32 --                                                                          --
33 ------------------------------------------------------------------------------
34
35 --  This is the FreeBSD THREADS version of this package
36
37 with Interfaces.C; use Interfaces.C;
38
39 package body System.OS_Interface is
40
41    -----------
42    -- Errno --
43    -----------
44
45    function Errno return int is
46       type int_ptr is access all int;
47
48       function internal_errno return int_ptr;
49       pragma Import (C, internal_errno, "__error");
50
51    begin
52       return (internal_errno.all);
53    end Errno;
54
55    --------------------
56    -- Get_Stack_Base --
57    --------------------
58
59    function Get_Stack_Base (thread : pthread_t) return Address is
60       pragma Unreferenced (thread);
61    begin
62       return (0);
63    end Get_Stack_Base;
64
65    ------------------
66    -- pthread_init --
67    ------------------
68
69    procedure pthread_init is
70    begin
71       null;
72    end pthread_init;
73
74    -----------------
75    -- To_Duration --
76    -----------------
77
78    function To_Duration (TS : timespec) return Duration is
79    begin
80       return Duration (TS.ts_sec) + Duration (TS.ts_nsec) / 10#1#E9;
81    end To_Duration;
82
83    ------------------------
84    -- To_Target_Priority --
85    ------------------------
86
87    function To_Target_Priority
88      (Prio : System.Any_Priority) return Interfaces.C.int
89    is
90    begin
91       return Interfaces.C.int (Prio);
92    end To_Target_Priority;
93
94    -----------------
95    -- To_Timespec --
96    -----------------
97
98    function To_Timespec (D : Duration) return timespec is
99       S : time_t;
100       F : Duration;
101
102    begin
103       S := time_t (Long_Long_Integer (D));
104       F := D - Duration (S);
105
106       --  If F has negative value due to a round-up, adjust for positive F
107
108       if F < 0.0 then
109          S := S - 1;
110          F := F + 1.0;
111       end if;
112
113       return timespec'(ts_sec => S,
114                        ts_nsec => long (Long_Long_Integer (F * 10#1#E9)));
115    end To_Timespec;
116
117 end System.OS_Interface;