1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- S Y S T E M . T H R E A D S --
9 -- Copyright (C) 1992-2003 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, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, 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 -- This is a dummy version of this package.
36 with Unchecked_Conversion
;
38 with System
.Threads
.Initialization
;
40 package body System
.Threads
is
42 -----------------------
43 -- Get_Current_Excep --
44 -----------------------
46 function Get_Current_Excep
return EOA
is
49 end Get_Current_Excep
;
51 ------------------------
52 -- Get_Jmpbuf_Address --
53 ------------------------
55 function Get_Jmpbuf_Address
return Address
is
58 end Get_Jmpbuf_Address
;
60 ------------------------
61 -- Get_Sec_Stack_Addr --
62 ------------------------
64 function Get_Sec_Stack_Addr
return Address
is
67 end Get_Sec_Stack_Addr
;
69 ------------------------
70 -- Set_Jmpbuf_Address --
71 ------------------------
73 procedure Set_Jmpbuf_Address
(Addr
: Address
) is
74 pragma Unreferenced
(Addr
);
77 end Set_Jmpbuf_Address
;
79 ------------------------
80 -- Set_Sec_Stack_Addr --
81 ------------------------
83 procedure Set_Sec_Stack_Addr
(Addr
: Address
) is
84 pragma Unreferenced
(Addr
);
87 end Set_Sec_Stack_Addr
;
89 -----------------------
90 -- Thread_Body_Enter --
91 -----------------------
93 procedure Thread_Body_Enter
94 (Sec_Stack_Address
: System
.Address
;
95 Sec_Stack_Size
: Natural;
96 Process_ATSD_Address
: System
.Address
)
98 pragma Unreferenced
(Sec_Stack_Address
);
99 pragma Unreferenced
(Sec_Stack_Size
);
100 pragma Unreferenced
(Process_ATSD_Address
);
103 end Thread_Body_Enter
;
105 ----------------------------------
106 -- Thread_Body_Exceptional_Exit --
107 ----------------------------------
109 procedure Thread_Body_Exceptional_Exit
110 (EO
: Ada
.Exceptions
.Exception_Occurrence
)
112 pragma Unreferenced
(EO
);
115 end Thread_Body_Exceptional_Exit
;
117 -----------------------
118 -- Thread_Body_Leave --
119 -----------------------
121 procedure Thread_Body_Leave
is
124 end Thread_Body_Leave
;