1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- S Y S T E M . S O F T _ L I N K S --
9 -- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
11 -- GNAT 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. 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. 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 GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
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. --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 ------------------------------------------------------------------------------
34 pragma Warnings
(Off
);
39 -- We must turn polling off for this unit, because otherwise we get
40 -- an infinite loop from the code within the Poll routine itself.
42 with System
.Parameters
;
43 -- Used for Sec_Stack_Ratio
45 pragma Warnings
(Off
);
46 -- Disable warnings since System.Secondary_Stack is currently not
48 with System
.Secondary_Stack
;
51 package body System
.Soft_Links
is
53 package SST
renames System
.Secondary_Stack
;
55 NT_Exc_Stack
: array (0 .. 8192) of aliased Character;
56 for NT_Exc_Stack
'Alignment use Standard
'Maximum_Alignment;
57 -- Allocate an exception stack for the main program to use.
58 -- This is currently only used under VMS.
61 -- Note: we rely on the default initialization of NT_TSD
67 procedure Abort_Defer_NT
is
72 ----------------------
73 -- Abort_Handler_NT --
74 ----------------------
76 procedure Abort_Handler_NT
is
81 ----------------------
82 -- Abort_Undefer_NT --
83 ----------------------
85 procedure Abort_Undefer_NT
is
94 procedure Adafinal_NT
is
96 -- Handle normal task termination by the environment task, but only
97 -- for the normal task termination. In the case of Abnormal and
98 -- Unhandled_Exception they must have been handled before, and the
99 -- task termination soft link must have been changed so the task
100 -- termination routine is not executed twice.
102 Task_Termination_Handler
.all (Ada
.Exceptions
.Null_Occurrence
);
104 -- Finalize the global list for controlled objects if needed
106 Finalize_Global_List
.all;
109 ---------------------------
110 -- Check_Abort_Status_NT --
111 ---------------------------
113 function Check_Abort_Status_NT
return Integer is
115 return Boolean'Pos (False);
116 end Check_Abort_Status_NT
;
118 ------------------------
119 -- Complete_Master_NT --
120 ------------------------
122 procedure Complete_Master_NT
is
125 end Complete_Master_NT
;
131 procedure Create_TSD
(New_TSD
: in out TSD
) is
132 use type Parameters
.Size_Type
;
134 SS_Ratio_Dynamic
: constant Boolean :=
135 Parameters
.Sec_Stack_Ratio
= Parameters
.Dynamic
;
138 if SS_Ratio_Dynamic
then
140 (New_TSD
.Sec_Stack_Addr
, SST
.Default_Secondary_Stack_Size
);
144 -----------------------
145 -- Current_Master_NT --
146 -----------------------
148 function Current_Master_NT
return Integer is
151 end Current_Master_NT
;
157 procedure Destroy_TSD
(Old_TSD
: in out TSD
) is
159 SST
.SS_Free
(Old_TSD
.Sec_Stack_Addr
);
162 ---------------------
163 -- Enter_Master_NT --
164 ---------------------
166 procedure Enter_Master_NT
is
171 --------------------------
172 -- Get_Current_Excep_NT --
173 --------------------------
175 function Get_Current_Excep_NT
return EOA
is
177 return NT_TSD
.Current_Excep
'Access;
178 end Get_Current_Excep_NT
;
180 ---------------------------
181 -- Get_Exc_Stack_Addr_NT --
182 ---------------------------
184 function Get_Exc_Stack_Addr_NT
return Address
is
186 return NT_Exc_Stack
(NT_Exc_Stack
'Last)'Address;
187 end Get_Exc_Stack_Addr_NT
;
189 -----------------------------
190 -- Get_Exc_Stack_Addr_Soft --
191 -----------------------------
193 function Get_Exc_Stack_Addr_Soft
return Address
is
195 return Get_Exc_Stack_Addr
.all;
196 end Get_Exc_Stack_Addr_Soft
;
198 ------------------------
199 -- Get_GNAT_Exception --
200 ------------------------
202 function Get_GNAT_Exception
return Ada
.Exceptions
.Exception_Id
is
204 return Ada
.Exceptions
.Exception_Identity
(Get_Current_Excep
.all.all);
205 end Get_GNAT_Exception
;
207 ---------------------------
208 -- Get_Jmpbuf_Address_NT --
209 ---------------------------
211 function Get_Jmpbuf_Address_NT
return Address
is
213 return NT_TSD
.Jmpbuf_Address
;
214 end Get_Jmpbuf_Address_NT
;
216 -----------------------------
217 -- Get_Jmpbuf_Address_Soft --
218 -----------------------------
220 function Get_Jmpbuf_Address_Soft
return Address
is
222 return Get_Jmpbuf_Address
.all;
223 end Get_Jmpbuf_Address_Soft
;
225 ---------------------------
226 -- Get_Sec_Stack_Addr_NT --
227 ---------------------------
229 function Get_Sec_Stack_Addr_NT
return Address
is
231 return NT_TSD
.Sec_Stack_Addr
;
232 end Get_Sec_Stack_Addr_NT
;
234 -----------------------------
235 -- Get_Sec_Stack_Addr_Soft --
236 -----------------------------
238 function Get_Sec_Stack_Addr_Soft
return Address
is
240 return Get_Sec_Stack_Addr
.all;
241 end Get_Sec_Stack_Addr_Soft
;
243 -----------------------
244 -- Get_Stack_Info_NT --
245 -----------------------
247 function Get_Stack_Info_NT
return Stack_Checking
.Stack_Access
is
249 return NT_TSD
.Pri_Stack_Info
'Access;
250 end Get_Stack_Info_NT
;
252 -------------------------------
253 -- Null_Finalize_Global_List --
254 -------------------------------
256 procedure Null_Finalize_Global_List
is
259 end Null_Finalize_Global_List
;
261 ---------------------------
262 -- Set_Jmpbuf_Address_NT --
263 ---------------------------
265 procedure Set_Jmpbuf_Address_NT
(Addr
: Address
) is
267 NT_TSD
.Jmpbuf_Address
:= Addr
;
268 end Set_Jmpbuf_Address_NT
;
270 procedure Set_Jmpbuf_Address_Soft
(Addr
: Address
) is
272 Set_Jmpbuf_Address
(Addr
);
273 end Set_Jmpbuf_Address_Soft
;
275 ---------------------------
276 -- Set_Sec_Stack_Addr_NT --
277 ---------------------------
279 procedure Set_Sec_Stack_Addr_NT
(Addr
: Address
) is
281 NT_TSD
.Sec_Stack_Addr
:= Addr
;
282 end Set_Sec_Stack_Addr_NT
;
284 -----------------------------
285 -- Set_Sec_Stack_Addr_Soft --
286 -----------------------------
288 procedure Set_Sec_Stack_Addr_Soft
(Addr
: Address
) is
290 Set_Sec_Stack_Addr
(Addr
);
291 end Set_Sec_Stack_Addr_Soft
;
297 procedure Task_Lock_NT
is
306 function Task_Name_NT
return String is
311 -------------------------
312 -- Task_Termination_NT --
313 -------------------------
315 procedure Task_Termination_NT
(Excep
: EO
) is
316 pragma Warnings
(Off
, Excep
);
319 end Task_Termination_NT
;
325 procedure Task_Unlock_NT
is
330 -------------------------
331 -- Update_Exception_NT --
332 -------------------------
334 procedure Update_Exception_NT
(X
: EO
:= Current_Target_Exception
) is
336 Ada
.Exceptions
.Save_Occurrence
(NT_TSD
.Current_Excep
, X
);
337 end Update_Exception_NT
;
339 end System
.Soft_Links
;