OSDN Git Service

2007-10-15 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / g-thread.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT RUN-TIME COMPONENTS                         --
4 --                                                                          --
5 --                         G N A T . T H R E A D S                          --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --                    Copyright (C) 1998-2007, AdaCore                      --
10 --                                                                          --
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.                                              --
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 -- GNAT was originally developed  by the GNAT team at  New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 with Ada.Task_Identification; use Ada.Task_Identification;
35 with System.Task_Primitives.Operations;
36 with System.Tasking;
37 with System.Tasking.Stages;   use System.Tasking.Stages;
38 with System.OS_Interface;     use System.OS_Interface;
39 with System.Soft_Links;       use System.Soft_Links;
40 with Ada.Unchecked_Conversion;
41
42 package body GNAT.Threads is
43
44    use System;
45
46    package STPO renames System.Task_Primitives.Operations;
47
48    type Thread_Id_Ptr is access all Thread_Id;
49
50    pragma Warnings (Off);
51    --  The following unchecked conversions are aliasing safe, since they
52    --  are never used to create pointers to improperly aliased data.
53
54    function To_Addr is new Ada.Unchecked_Conversion (Task_Id, Address);
55    function To_Id   is new Ada.Unchecked_Conversion (Address, Task_Id);
56    function To_Id   is new Ada.Unchecked_Conversion (Address, Tasking.Task_Id);
57    function To_Tid  is new Ada.Unchecked_Conversion
58      (Address, Ada.Task_Identification.Task_Id);
59    function To_Thread is new Ada.Unchecked_Conversion (Address, Thread_Id_Ptr);
60
61    pragma Warnings (On);
62
63    type Code_Proc is access procedure (Id : Address; Parm : Void_Ptr);
64
65    task type Thread
66      (Stsz : Natural;
67       Prio : Any_Priority;
68       Parm : Void_Ptr;
69       Code : Code_Proc)
70    is
71       pragma Unreferenced (Parm);
72       pragma Priority (Prio);
73       pragma Storage_Size (Stsz);
74    end Thread;
75
76    task body Thread is
77    begin
78       Code.all (To_Addr (Current_Task), Parm);
79    end Thread;
80
81    type Tptr is access Thread;
82
83    -------------------
84    -- Create_Thread --
85    -------------------
86
87    function Create_Thread
88      (Code : Address;
89       Parm : Void_Ptr;
90       Size : Natural;
91       Prio : Integer) return System.Address
92    is
93       TP : Tptr;
94
95       function To_CP is new Ada.Unchecked_Conversion (Address, Code_Proc);
96
97    begin
98       TP := new Thread (Size, Prio, Parm, To_CP (Code));
99       return To_Addr (TP'Identity);
100    end Create_Thread;
101
102    ---------------------
103    -- Register_Thread --
104    ---------------------
105
106    function Register_Thread return System.Address is
107    begin
108       return Task_Primitives.Operations.Register_Foreign_Thread.all'Address;
109    end Register_Thread;
110
111    -----------------------
112    -- Unregister_Thread --
113    -----------------------
114
115    procedure Unregister_Thread is
116       Self_Id : constant Tasking.Task_Id := Task_Primitives.Operations.Self;
117    begin
118       Self_Id.Common.State := Tasking.Terminated;
119       Destroy_TSD (Self_Id.Common.Compiler_Data);
120       Free_Task (Self_Id);
121    end Unregister_Thread;
122
123    --------------------------
124    -- Unregister_Thread_Id --
125    --------------------------
126
127    procedure Unregister_Thread_Id (Thread : System.Address) is
128       Thr : constant Thread_Id := To_Thread (Thread).all;
129       T   : Tasking.Task_Id;
130
131       use type Tasking.Task_Id;
132       --  This use clause should be removed once a visibility problem
133       --  with the MaRTE run time has been fixed. ???
134
135       pragma Warnings (Off);
136       use type System.OS_Interface.Thread_Id;
137       pragma Warnings (On);
138
139    begin
140       STPO.Lock_RTS;
141
142       T := Tasking.All_Tasks_List;
143       loop
144          exit when T = null or else STPO.Get_Thread_Id (T) = Thr;
145
146          T := T.Common.All_Tasks_Link;
147       end loop;
148
149       STPO.Unlock_RTS;
150
151       if T /= null then
152          T.Common.State := Tasking.Terminated;
153          Destroy_TSD (T.Common.Compiler_Data);
154          Free_Task (T);
155       end if;
156    end Unregister_Thread_Id;
157
158    --------------------
159    -- Destroy_Thread --
160    --------------------
161
162    procedure Destroy_Thread (Id : Address) is
163       Tid : constant Task_Id := To_Id (Id);
164    begin
165       Abort_Task (Tid);
166    end Destroy_Thread;
167
168    ----------------
169    -- Get_Thread --
170    ----------------
171
172    procedure Get_Thread (Id : Address; Thread : Address) is
173       Thr : constant Thread_Id_Ptr := To_Thread (Thread);
174    begin
175       Thr.all := Task_Primitives.Operations.Get_Thread_Id (To_Id (Id));
176    end Get_Thread;
177
178    ----------------
179    -- To_Task_Id --
180    ----------------
181
182    function To_Task_Id
183      (Id : System.Address) return Ada.Task_Identification.Task_Id
184    is
185    begin
186       return To_Tid (Id);
187    end To_Task_Id;
188
189 end GNAT.Threads;