* adaint.c: Minor cleanups.
[platform/upstream/gcc.git] / gcc / ada / a-taside.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                        GNAT RUN-TIME COMPONENTS                          --
4 --                                                                          --
5 --              A D A . T A S K _ I D E N T I F I C A T I O N               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --                            $Revision: 1.20 $
10 --                                                                          --
11 --           Copyright (C) 1992-2001 Free Software Foundation, Inc.         --
12 --                                                                          --
13 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
14 -- terms of the  GNU General Public License as published  by the Free Soft- --
15 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
16 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
19 -- for  more details.  You should have  received  a copy of the GNU General --
20 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
21 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
22 -- MA 02111-1307, USA.                                                      --
23 --                                                                          --
24 -- As a special exception,  if other files  instantiate  generics from this --
25 -- unit, or you link  this unit with other files  to produce an executable, --
26 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
27 -- covered  by the  GNU  General  Public  License.  This exception does not --
28 -- however invalidate  any other reasons why  the executable file  might be --
29 -- covered by the  GNU Public License.                                      --
30 --                                                                          --
31 -- GNAT was originally developed  by the GNAT team at  New York University. --
32 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
33 --                                                                          --
34 ------------------------------------------------------------------------------
35
36 with System.Address_Image;
37 --  used for the function itself
38
39 with System.Tasking;
40 --  used for Task_List
41
42 with System.Tasking.Stages;
43 --  used for Terminated
44 --           Abort_Tasks
45
46 with System.Tasking.Rendezvous;
47 --  used for Callable
48
49 with System.Task_Primitives.Operations;
50 --  used for Self
51
52 with System.Task_Info;
53 use type System.Task_Info.Task_Image_Type;
54
55 with Unchecked_Conversion;
56
57 package body Ada.Task_Identification is
58
59    -----------------------
60    -- Local Subprograms --
61    -----------------------
62
63    function Convert_Ids (T : Task_Id) return System.Tasking.Task_ID;
64    function Convert_Ids (T : System.Tasking.Task_ID) return Task_Id;
65    pragma Inline (Convert_Ids);
66    --  Conversion functions between different forms of Task_Id
67
68    ---------
69    -- "=" --
70    ---------
71
72    function  "=" (Left, Right : Task_Id) return Boolean is
73    begin
74       return System.Tasking."=" (Convert_Ids (Left), Convert_Ids (Right));
75    end "=";
76
77    -----------------
78    -- Abort_Task --
79    ----------------
80
81    procedure Abort_Task (T : Task_Id) is
82    begin
83       if T = Null_Task_Id then
84          raise Program_Error;
85       else
86          System.Tasking.Stages.Abort_Tasks
87            (System.Tasking.Task_List'(1 => Convert_Ids (T)));
88       end if;
89    end Abort_Task;
90
91    -----------------
92    -- Convert_Ids --
93    -----------------
94
95    function Convert_Ids (T : Task_Id) return System.Tasking.Task_ID is
96    begin
97       return System.Tasking.Task_ID (T);
98    end Convert_Ids;
99
100    function Convert_Ids (T : System.Tasking.Task_ID) return Task_Id is
101    begin
102       return Task_Id (T);
103    end Convert_Ids;
104
105    ------------------
106    -- Current_Task --
107    ------------------
108
109    function Current_Task return Task_Id is
110    begin
111       return Convert_Ids (System.Task_Primitives.Operations.Self);
112    end Current_Task;
113
114    -----------
115    -- Image --
116    -----------
117
118    function Image (T : Task_Id) return String is
119       use System.Task_Info;
120       function To_Address is new
121         Unchecked_Conversion (Task_Id, System.Address);
122
123    begin
124       if T = Null_Task_Id then
125          return "";
126
127       elsif T.Common.Task_Image = null then
128          return System.Address_Image (To_Address (T));
129
130       else
131          return T.Common.Task_Image.all
132             & "_" &  System.Address_Image (To_Address (T));
133       end if;
134    end Image;
135
136    -----------------
137    -- Is_Callable --
138    -----------------
139
140    function Is_Callable (T : Task_Id) return Boolean is
141    begin
142       if T = Null_Task_Id then
143          raise Program_Error;
144       else
145          return System.Tasking.Rendezvous.Callable (Convert_Ids (T));
146       end if;
147    end Is_Callable;
148
149    -------------------
150    -- Is_Terminated --
151    -------------------
152
153    function Is_Terminated (T : Task_Id) return Boolean is
154    begin
155       if T = Null_Task_Id then
156          raise Program_Error;
157       else
158          return System.Tasking.Stages.Terminated (Convert_Ids (T));
159       end if;
160    end Is_Terminated;
161
162 end Ada.Task_Identification;