1 ------------------------------------------------------------------------------
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . T A S K I N G . U T I L I T I E S --
10 -- Copyright (C) 1992-2002, Free Software Foundation, Inc. --
12 -- GNARL is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNARL; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
30 -- GNARL was developed by the GNARL team at Florida State University. It is --
31 -- now maintained by Ada Core Technologies, Inc. (http://www.gnat.com). --
33 ------------------------------------------------------------------------------
35 -- This package provides RTS Internal Declarations.
36 -- These declarations are not part of the GNARLI
39 -- Turn off polling, we do not want ATC polling to take place during
40 -- tasking operations. It causes infinite loops and other problems.
42 with System
.Tasking
.Debug
;
43 -- used for Known_Tasks
45 with System
.Task_Primitives
.Operations
;
46 -- used for Write_Lock
54 with System
.Tasking
.Initialization
;
55 -- Used for Defer_Abort
57 -- Locked_Abort_To_Level
59 with System
.Tasking
.Queuing
;
60 -- used for Dequeue_Call
63 with System
.Tasking
.Debug
;
66 with System
.Parameters
;
67 -- used for Single_Lock
70 with System
.Traces
.Tasking
;
71 -- used for Send_Trace_Info
73 with Unchecked_Conversion
;
75 package body System
.Tasking
.Utilities
is
77 package STPO
renames System
.Task_Primitives
.Operations
;
82 use Task_Primitives
.Operations
;
85 use System
.Traces
.Tasking
;
91 -- Similar to Locked_Abort_To_Level (Self_ID, T, 0), but:
92 -- (1) caller should be holding no locks except RTS_Lock when Single_Lock
93 -- (2) may be called for tasks that have not yet been activated
94 -- (3) always aborts whole task
96 procedure Abort_One_Task
(Self_ID
: Task_ID
; T
: Task_ID
) is
98 if Parameters
.Runtime_Traces
then
99 Send_Trace_Info
(T_Abort
, Self_ID
, T
);
104 if T
.Common
.State
= Unactivated
then
105 T
.Common
.Activator
:= null;
106 T
.Common
.State
:= Terminated
;
108 Cancel_Queued_Entry_Calls
(T
);
110 elsif T
.Common
.State
/= Terminated
then
111 Initialization
.Locked_Abort_To_Level
(Self_ID
, T
, 0);
121 -- Compiler interface only: Do not call from within the RTS,
123 -- except in the implementation of Ada.Task_Identification.
124 -- This must be called to implement the abort statement.
125 -- Much of the actual work of the abort is done by the abortee,
126 -- via the Abort_Handler signal handler, and propagation of the
127 -- Abort_Signal special exception.
129 procedure Abort_Tasks
(Tasks
: Task_List
) is
130 Self_Id
: constant Task_ID
:= STPO
.Self
;
135 Initialization
.Defer_Abort_Nestable
(Self_Id
);
138 -- Really should not be nested deferral here.
139 -- Patch for code generation error that defers abort before
140 -- evaluating parameters of an entry call (at least, timed entry
141 -- calls), and so may propagate an exception that causes abort
142 -- to remain undeferred indefinitely. See C97404B. When all
143 -- such bugs are fixed, this patch can be removed.
147 for J
in Tasks
'Range loop
149 Abort_One_Task
(Self_Id
, C
);
155 if C
.Pending_ATC_Level
> 0 then
156 P
:= C
.Common
.Parent
;
159 if P
.Pending_ATC_Level
= 0 then
160 Abort_One_Task
(Self_Id
, C
);
164 P
:= P
.Common
.Parent
;
168 C
:= C
.Common
.All_Tasks_Link
;
172 Initialization
.Undefer_Abort_Nestable
(Self_Id
);
175 -------------------------------
176 -- Cancel_Queued_Entry_Calls --
177 -------------------------------
179 -- This should only be called by T, unless T is a terminated previously
182 procedure Cancel_Queued_Entry_Calls
(T
: Task_ID
) is
183 Next_Entry_Call
: Entry_Call_Link
;
184 Entry_Call
: Entry_Call_Link
;
187 Self_Id
: constant Task_ID
:= STPO
.Self
;
190 pragma Assert
(T
= Self
or else T
.Common
.State
= Terminated
);
192 for J
in 1 .. T
.Entry_Num
loop
193 Queuing
.Dequeue_Head
(T
.Entry_Queues
(J
), Entry_Call
);
195 while Entry_Call
/= null loop
196 -- Leave Entry_Call.Done = False, since this is cancelled
198 Caller
:= Entry_Call
.Self
;
199 Entry_Call
.Exception_To_Raise
:= Tasking_Error
'Identity;
200 Queuing
.Dequeue_Head
(T
.Entry_Queues
(J
), Next_Entry_Call
);
201 Level
:= Entry_Call
.Level
- 1;
203 Write_Lock
(Entry_Call
.Self
);
204 Initialization
.Wakeup_Entry_Caller
205 (Self_Id
, Entry_Call
, Cancelled
);
206 Unlock
(Entry_Call
.Self
);
208 Entry_Call
.State
:= Done
;
209 Entry_Call
:= Next_Entry_Call
;
212 end Cancel_Queued_Entry_Calls
;
214 ------------------------
215 -- Exit_One_ATC_Level --
216 ------------------------
218 -- Call only with abort deferred and holding lock of Self_Id.
219 -- This is a bit of common code for all entry calls.
220 -- The effect is to exit one level of ATC nesting.
222 -- If we have reached the desired ATC nesting level, reset the
223 -- requested level to effective infinity, to allow further calls.
224 -- In any case, reset Self_Id.Aborting, to allow re-raising of
227 procedure Exit_One_ATC_Level
(Self_ID
: Task_ID
) is
229 Self_ID
.ATC_Nesting_Level
:= Self_ID
.ATC_Nesting_Level
- 1;
232 (Debug
.Trace
(Self_ID
, "EOAL: exited to ATC level: " &
233 ATC_Level
'Image (Self_ID
.ATC_Nesting_Level
), 'A'));
235 pragma Assert
(Self_ID
.ATC_Nesting_Level
>= 1);
237 if Self_ID
.Pending_ATC_Level
< ATC_Level_Infinity
then
238 if Self_ID
.Pending_ATC_Level
= Self_ID
.ATC_Nesting_Level
then
239 Self_ID
.Pending_ATC_Level
:= ATC_Level_Infinity
;
240 Self_ID
.Aborting
:= False;
242 -- Force the next Undefer_Abort to re-raise Abort_Signal
245 (Self_ID
.Pending_ATC_Level
< Self_ID
.ATC_Nesting_Level
);
247 if Self_ID
.Aborting
then
248 Self_ID
.ATC_Hack
:= True;
249 Self_ID
.Pending_Action
:= True;
253 end Exit_One_ATC_Level
;
255 ----------------------
256 -- Make_Independent --
257 ----------------------
259 procedure Make_Independent
is
260 Self_Id
: constant Task_ID
:= STPO
.Self
;
261 Environment_Task
: constant Task_ID
:= STPO
.Environment_Task
;
262 Parent
: constant Task_ID
:= Self_Id
.Common
.Parent
;
263 Parent_Needs_Updating
: Boolean := False;
266 if Self_Id
.Known_Tasks_Index
/= -1 then
267 Known_Tasks
(Self_Id
.Known_Tasks_Index
) := null;
270 Initialization
.Defer_Abort
(Self_Id
);
276 Write_Lock
(Environment_Task
);
277 Write_Lock
(Self_Id
);
279 pragma Assert
(Parent
= Environment_Task
280 or else Self_Id
.Master_of_Task
= Library_Task_Level
);
282 Self_Id
.Master_of_Task
:= Independent_Task_Level
;
284 -- The run time assumes that the parent of an independent task is the
287 if Parent
/= Environment_Task
then
289 -- We can not lock three tasks at the same time, so defer the
290 -- operations on the parent.
292 Parent_Needs_Updating
:= True;
293 Self_Id
.Common
.Parent
:= Environment_Task
;
296 -- Update Independent_Task_Count that is needed for the GLADE
297 -- termination rule. See also pending update in
298 -- System.Tasking.Stages.Check_Independent
300 Independent_Task_Count
:= Independent_Task_Count
+ 1;
304 -- Changing the parent after creation is not trivial. Do not forget
305 -- to update the old parent counts, and the new parent (i.e. the
306 -- Environment_Task) counts.
308 if Parent_Needs_Updating
then
310 Parent
.Awake_Count
:= Parent
.Awake_Count
- 1;
311 Parent
.Alive_Count
:= Parent
.Alive_Count
- 1;
312 Environment_Task
.Awake_Count
:= Environment_Task
.Awake_Count
+ 1;
313 Environment_Task
.Alive_Count
:= Environment_Task
.Alive_Count
+ 1;
317 Unlock
(Environment_Task
);
323 Initialization
.Undefer_Abort
(Self_Id
);
324 end Make_Independent
;
330 procedure Make_Passive
(Self_ID
: Task_ID
; Task_Completed
: Boolean) is
331 C
: Task_ID
:= Self_ID
;
332 P
: Task_ID
:= C
.Common
.Parent
;
334 Master_Completion_Phase
: Integer;
343 if Task_Completed
then
344 Self_ID
.Common
.State
:= Terminated
;
346 if Self_ID
.Awake_Count
= 0 then
348 -- We are completing via a terminate alternative.
349 -- Our parent should wait in Phase 2 of Complete_Master.
351 Master_Completion_Phase
:= 2;
353 pragma Assert
(Task_Completed
);
354 pragma Assert
(Self_ID
.Terminate_Alternative
);
355 pragma Assert
(Self_ID
.Alive_Count
= 1);
358 -- We are NOT on a terminate alternative.
359 -- Our parent should wait in Phase 1 of Complete_Master.
361 Master_Completion_Phase
:= 1;
362 pragma Assert
(Self_ID
.Awake_Count
= 1);
365 -- We are accepting with a terminate alternative.
368 if Self_ID
.Open_Accepts
= null then
370 -- Somebody started a rendezvous while we had our lock open.
371 -- Skip the terminate alternative.
382 Self_ID
.Terminate_Alternative
:= True;
383 Master_Completion_Phase
:= 0;
385 pragma Assert
(Self_ID
.Terminate_Alternative
);
386 pragma Assert
(Self_ID
.Awake_Count
>= 1);
389 if Master_Completion_Phase
= 2 then
391 -- Since our Awake_Count is zero but our Alive_Count
392 -- is nonzero, we have been accepting with a terminate
393 -- alternative, and we now have been told to terminate
394 -- by a completed master (in some ancestor task) that
395 -- is waiting (with zero Awake_Count) in Phase 2 of
398 pragma Debug
(Debug
.Trace
(Self_ID
, "Make_Passive: Phase 2", 'M'));
400 pragma Assert
(P
/= null);
402 C
.Alive_Count
:= C
.Alive_Count
- 1;
404 if C
.Alive_Count
> 0 then
410 -- C's count just went to zero, indicating that
411 -- all of C's dependents are terminated.
412 -- C has a parent, P.
415 -- C's count just went to zero, indicating that all of C's
416 -- dependents are terminated. C has a parent, P. Notify P that
417 -- C and its dependents have all terminated.
419 P
.Alive_Count
:= P
.Alive_Count
- 1;
420 exit when P
.Alive_Count
> 0;
424 P
:= C
.Common
.Parent
;
426 -- Environment task cannot have terminated yet
428 pragma Assert
(P
/= null);
434 pragma Assert
(P
.Awake_Count
/= 0);
436 if P
.Common
.State
= Master_Phase_2_Sleep
437 and then C
.Master_of_Task
= P
.Master_Within
439 pragma Assert
(P
.Common
.Wait_Count
> 0);
440 P
.Common
.Wait_Count
:= P
.Common
.Wait_Count
- 1;
442 if P
.Common
.Wait_Count
= 0 then
443 Wakeup
(P
, Master_Phase_2_Sleep
);
452 -- We are terminating in Phase 1 or Complete_Master,
453 -- or are accepting on a terminate alternative.
455 C
.Awake_Count
:= C
.Awake_Count
- 1;
457 if Task_Completed
then
458 pragma Assert
(Self_ID
.Awake_Count
= 0);
459 C
.Alive_Count
:= C
.Alive_Count
- 1;
462 if C
.Awake_Count
> 0 or else P
= null then
472 -- C's count just went to zero, indicating that all of C's
473 -- dependents are terminated or accepting with terminate alt.
474 -- C has a parent, P.
477 -- Notify P that C has gone passive.
479 P
.Awake_Count
:= P
.Awake_Count
- 1;
481 if Task_Completed
and then C
.Alive_Count
= 0 then
482 P
.Alive_Count
:= P
.Alive_Count
- 1;
485 exit when P
.Awake_Count
> 0;
489 P
:= C
.Common
.Parent
;
499 -- P has non-passive dependents.
501 if P
.Common
.State
= Master_Completion_Sleep
502 and then C
.Master_of_Task
= P
.Master_Within
506 (Self_ID
, "Make_Passive: Phase 1, parent waiting", 'M'));
508 -- If parent is in Master_Completion_Sleep, it
509 -- cannot be on a terminate alternative, hence
510 -- it cannot have Awake_Count of zero.
512 pragma Assert
(P
.Common
.Wait_Count
> 0);
513 P
.Common
.Wait_Count
:= P
.Common
.Wait_Count
- 1;
515 if P
.Common
.Wait_Count
= 0 then
516 Wakeup
(P
, Master_Completion_Sleep
);
522 (Self_ID
, "Make_Passive: Phase 1, parent awake", 'M'));
530 end System
.Tasking
.Utilities
;