1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . T A S K I N G . R E N D E Z V O U S --
9 -- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
11 -- GNARL 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. GNARL 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 GNARL; 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 -- GNARL was developed by the GNARL team at Florida State University. --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
32 ------------------------------------------------------------------------------
35 -- Used for Exception_ID
37 -- Transfer_Occurrence
40 with System
.Task_Primitives
.Operations
;
41 -- used for Get_Priority
49 with System
.Tasking
.Entry_Calls
;
50 -- Used for Wait_For_Completion
51 -- Wait_For_Completion_With_Timeout
52 -- Wait_Until_Abortable
54 with System
.Tasking
.Initialization
;
55 -- used for Defer_Abort
57 -- Poll_Base_Priority_Change
60 with System
.Tasking
.Queuing
;
63 -- Select_Task_Entry_Call
66 with System
.Tasking
.Utilities
;
67 -- used for Check_Exception
69 -- Wakeup_Entry_Caller
72 with System
.Tasking
.Protected_Objects
.Operations
;
73 -- used for PO_Do_Or_Queue
77 with System
.Tasking
.Debug
;
80 with System
.Parameters
;
81 -- used for Single_Lock
84 with System
.Traces
.Tasking
;
85 -- used for Send_Trace_Info
87 package body System
.Tasking
.Rendezvous
is
89 package STPO
renames System
.Task_Primitives
.Operations
;
90 package POO
renames Protected_Objects
.Operations
;
91 package POE
renames Protected_Objects
.Entries
;
94 use Task_Primitives
.Operations
;
96 use System
.Traces
.Tasking
;
98 type Select_Treatment
is (
99 Accept_Alternative_Selected
, -- alternative with non-null body
100 Accept_Alternative_Completed
, -- alternative with null body
103 Accept_Alternative_Open
,
104 No_Alternative_Open
);
110 Default_Treatment
: constant array (Select_Modes
) of Select_Treatment
:=
111 (Simple_Mode
=> No_Alternative_Open
,
112 Else_Mode
=> Else_Selected
,
113 Terminate_Mode
=> Terminate_Selected
,
114 Delay_Mode
=> No_Alternative_Open
);
116 New_State
: constant array (Boolean, Entry_Call_State
)
117 of Entry_Call_State
:=
119 (Never_Abortable
=> Never_Abortable
,
120 Not_Yet_Abortable
=> Now_Abortable
,
121 Was_Abortable
=> Now_Abortable
,
122 Now_Abortable
=> Now_Abortable
,
124 Cancelled
=> Cancelled
),
126 (Never_Abortable
=> Never_Abortable
,
127 Not_Yet_Abortable
=> Not_Yet_Abortable
,
128 Was_Abortable
=> Was_Abortable
,
129 Now_Abortable
=> Now_Abortable
,
131 Cancelled
=> Cancelled
)
134 -----------------------
135 -- Local Subprograms --
136 -----------------------
138 procedure Local_Defer_Abort
(Self_Id
: Task_Id
) renames
139 System
.Tasking
.Initialization
.Defer_Abort_Nestable
;
141 procedure Local_Undefer_Abort
(Self_Id
: Task_Id
) renames
142 System
.Tasking
.Initialization
.Undefer_Abort_Nestable
;
144 -- Florist defers abort around critical sections that
145 -- make entry calls to the Interrupt_Manager task, which
146 -- violates the general rule about top-level runtime system
147 -- calls from abort-deferred regions. It is not that this is
148 -- unsafe, but when it occurs in "normal" programs it usually
149 -- means either the user is trying to do a potentially blocking
150 -- operation from within a protected object, or there is a
151 -- runtime system/compiler error that has failed to undefer
152 -- an earlier abort deferral. Thus, for debugging it may be
153 -- wise to modify the above renamings to the non-nestable forms.
155 procedure Boost_Priority
(Call
: Entry_Call_Link
; Acceptor
: Task_Id
);
156 pragma Inline
(Boost_Priority
);
157 -- Call this only with abort deferred and holding lock of Acceptor
159 procedure Call_Synchronous
161 E
: Task_Entry_Index
;
162 Uninterpreted_Data
: System
.Address
;
164 Rendezvous_Successful
: out Boolean);
165 pragma Inline
(Call_Synchronous
);
166 -- This call is used to make a simple or conditional entry call.
167 -- Called from Call_Simple and Task_Entry_Call.
169 procedure Setup_For_Rendezvous_With_Body
170 (Entry_Call
: Entry_Call_Link
;
172 pragma Inline
(Setup_For_Rendezvous_With_Body
);
173 -- Call this only with abort deferred and holding lock of Acceptor.
174 -- When a rendezvous selected (ready for rendezvous) we need to save
175 -- previous caller and adjust the priority. Also we need to make
176 -- this call not Abortable (Cancellable) since the rendezvous has
177 -- already been started.
179 procedure Wait_For_Call
(Self_Id
: Task_Id
);
180 pragma Inline
(Wait_For_Call
);
181 -- Call this only with abort deferred and holding lock of Self_Id.
182 -- An accepting task goes into Sleep by calling this routine
183 -- waiting for a call from the caller or waiting for an abort.
184 -- Make sure Self_Id is locked before calling this routine.
190 procedure Accept_Call
191 (E
: Task_Entry_Index
;
192 Uninterpreted_Data
: out System
.Address
)
194 Self_Id
: constant Task_Id
:= STPO
.Self
;
195 Caller
: Task_Id
:= null;
196 Open_Accepts
: aliased Accept_List
(1 .. 1);
197 Entry_Call
: Entry_Call_Link
;
200 Initialization
.Defer_Abort
(Self_Id
);
206 STPO
.Write_Lock
(Self_Id
);
208 if not Self_Id
.Callable
then
209 pragma Assert
(Self_Id
.Pending_ATC_Level
= 0);
211 pragma Assert
(Self_Id
.Pending_Action
);
213 STPO
.Unlock
(Self_Id
);
219 Initialization
.Undefer_Abort
(Self_Id
);
221 -- Should never get here ???
223 pragma Assert
(False);
224 raise Standard
'Abort_Signal;
227 Queuing
.Dequeue_Head
(Self_Id
.Entry_Queues
(E
), Entry_Call
);
229 if Entry_Call
/= null then
230 Caller
:= Entry_Call
.Self
;
231 Setup_For_Rendezvous_With_Body
(Entry_Call
, Self_Id
);
232 Uninterpreted_Data
:= Entry_Call
.Uninterpreted_Data
;
237 Open_Accepts
(1).Null_Body
:= False;
238 Open_Accepts
(1).S
:= E
;
239 Self_Id
.Open_Accepts
:= Open_Accepts
'Unrestricted_Access;
241 -- Wait for normal call
243 if Parameters
.Runtime_Traces
then
244 Send_Trace_Info
(W_Accept
, Self_Id
, Integer (Open_Accepts
'Length));
248 (Debug
.Trace
(Self_Id
, "Accept_Call: wait", 'R'));
249 Wait_For_Call
(Self_Id
);
251 pragma Assert
(Self_Id
.Open_Accepts
= null);
253 if Self_Id
.Common
.Call
/= null then
254 Caller
:= Self_Id
.Common
.Call
.Self
;
255 Uninterpreted_Data
:=
256 Caller
.Entry_Calls
(Caller
.ATC_Nesting_Level
).Uninterpreted_Data
;
258 -- Case of an aborted task
260 Uninterpreted_Data
:= System
.Null_Address
;
264 -- Self_Id.Common.Call should already be updated by the Caller
265 -- On return, we will start the rendezvous.
267 STPO
.Unlock
(Self_Id
);
273 Initialization
.Undefer_Abort
(Self_Id
);
275 if Parameters
.Runtime_Traces
then
276 Send_Trace_Info
(M_Accept_Complete
, Caller
, Entry_Index
(E
));
284 procedure Accept_Trivial
(E
: Task_Entry_Index
) is
285 Self_Id
: constant Task_Id
:= STPO
.Self
;
286 Caller
: Task_Id
:= null;
287 Open_Accepts
: aliased Accept_List
(1 .. 1);
288 Entry_Call
: Entry_Call_Link
;
291 Initialization
.Defer_Abort_Nestable
(Self_Id
);
297 STPO
.Write_Lock
(Self_Id
);
299 if not Self_Id
.Callable
then
300 pragma Assert
(Self_Id
.Pending_ATC_Level
= 0);
302 pragma Assert
(Self_Id
.Pending_Action
);
304 STPO
.Unlock
(Self_Id
);
310 Initialization
.Undefer_Abort_Nestable
(Self_Id
);
312 -- Should never get here ???
314 pragma Assert
(False);
315 raise Standard
'Abort_Signal;
318 Queuing
.Dequeue_Head
(Self_Id
.Entry_Queues
(E
), Entry_Call
);
320 if Entry_Call
= null then
321 -- Need to wait for entry call
323 Open_Accepts
(1).Null_Body
:= True;
324 Open_Accepts
(1).S
:= E
;
325 Self_Id
.Open_Accepts
:= Open_Accepts
'Unrestricted_Access;
327 if Parameters
.Runtime_Traces
then
328 Send_Trace_Info
(W_Accept
, Self_Id
, Integer (Open_Accepts
'Length));
332 (Debug
.Trace
(Self_Id
, "Accept_Trivial: wait", 'R'));
334 Wait_For_Call
(Self_Id
);
336 pragma Assert
(Self_Id
.Open_Accepts
= null);
338 -- No need to do anything special here for pending abort.
339 -- Abort_Signal will be raised by Undefer on exit.
341 STPO
.Unlock
(Self_Id
);
343 else -- found caller already waiting
344 pragma Assert
(Entry_Call
.State
< Done
);
346 STPO
.Unlock
(Self_Id
);
347 Caller
:= Entry_Call
.Self
;
349 STPO
.Write_Lock
(Caller
);
350 Initialization
.Wakeup_Entry_Caller
(Self_Id
, Entry_Call
, Done
);
351 STPO
.Unlock
(Caller
);
354 if Parameters
.Runtime_Traces
then
355 Send_Trace_Info
(M_Accept_Complete
);
357 -- Fake one, since there is (???) no way
358 -- to know that the rendezvous is over
360 Send_Trace_Info
(M_RDV_Complete
);
367 Initialization
.Undefer_Abort_Nestable
(Self_Id
);
374 procedure Boost_Priority
(Call
: Entry_Call_Link
; Acceptor
: Task_Id
) is
375 Caller
: constant Task_Id
:= Call
.Self
;
376 Caller_Prio
: constant System
.Any_Priority
:= Get_Priority
(Caller
);
377 Acceptor_Prio
: constant System
.Any_Priority
:= Get_Priority
(Acceptor
);
380 if Caller_Prio
> Acceptor_Prio
then
381 Call
.Acceptor_Prev_Priority
:= Acceptor_Prio
;
382 Set_Priority
(Acceptor
, Caller_Prio
);
385 Call
.Acceptor_Prev_Priority
:= Priority_Not_Boosted
;
393 procedure Call_Simple
395 E
: Task_Entry_Index
;
396 Uninterpreted_Data
: System
.Address
)
398 Rendezvous_Successful
: Boolean;
401 -- If pragma Detect_Blocking is active then Program_Error must be
402 -- raised if this potentially blocking operation is called from a
405 if System
.Tasking
.Detect_Blocking
406 and then STPO
.Self
.Common
.Protected_Action_Nesting
> 0
408 Ada
.Exceptions
.Raise_Exception
409 (Program_Error
'Identity, "potentially blocking operation");
413 (Acceptor
, E
, Uninterpreted_Data
, Simple_Call
, Rendezvous_Successful
);
416 ----------------------
417 -- Call_Synchronous --
418 ----------------------
420 procedure Call_Synchronous
422 E
: Task_Entry_Index
;
423 Uninterpreted_Data
: System
.Address
;
425 Rendezvous_Successful
: out Boolean)
427 Self_Id
: constant Task_Id
:= STPO
.Self
;
429 Entry_Call
: Entry_Call_Link
;
432 pragma Assert
(Mode
/= Asynchronous_Call
);
434 Local_Defer_Abort
(Self_Id
);
435 Self_Id
.ATC_Nesting_Level
:= Self_Id
.ATC_Nesting_Level
+ 1;
437 (Debug
.Trace
(Self_Id
, "CS: entered ATC level: " &
438 ATC_Level
'Image (Self_Id
.ATC_Nesting_Level
), 'A'));
439 Level
:= Self_Id
.ATC_Nesting_Level
;
440 Entry_Call
:= Self_Id
.Entry_Calls
(Level
)'Access;
441 Entry_Call
.Next
:= null;
442 Entry_Call
.Mode
:= Mode
;
443 Entry_Call
.Cancellation_Attempted
:= False;
445 if Parameters
.Runtime_Traces
then
446 Send_Trace_Info
(W_Call
, Acceptor
, Entry_Index
(E
));
449 -- If this is a call made inside of an abort deferred region,
450 -- the call should be never abortable.
452 if Self_Id
.Deferral_Level
> 1 then
453 Entry_Call
.State
:= Never_Abortable
;
455 Entry_Call
.State
:= Now_Abortable
;
458 Entry_Call
.E
:= Entry_Index
(E
);
459 Entry_Call
.Prio
:= Get_Priority
(Self_Id
);
460 Entry_Call
.Uninterpreted_Data
:= Uninterpreted_Data
;
461 Entry_Call
.Called_Task
:= Acceptor
;
462 Entry_Call
.Exception_To_Raise
:= Ada
.Exceptions
.Null_Id
;
464 -- Note: the caller will undefer abort on return (see WARNING above)
470 if not Task_Do_Or_Queue
471 (Self_Id
, Entry_Call
, With_Abort
=> True)
473 STPO
.Write_Lock
(Self_Id
);
474 Utilities
.Exit_One_ATC_Level
(Self_Id
);
475 STPO
.Unlock
(Self_Id
);
481 if Parameters
.Runtime_Traces
then
482 Send_Trace_Info
(E_Missed
, Acceptor
);
485 Initialization
.Undefer_Abort
(Self_Id
);
489 STPO
.Write_Lock
(Self_Id
);
491 (Debug
.Trace
(Self_Id
, "Call_Synchronous: wait", 'R'));
492 Entry_Calls
.Wait_For_Completion
(Entry_Call
);
494 (Debug
.Trace
(Self_Id
, "Call_Synchronous: done waiting", 'R'));
495 Rendezvous_Successful
:= Entry_Call
.State
= Done
;
496 STPO
.Unlock
(Self_Id
);
502 Local_Undefer_Abort
(Self_Id
);
503 Entry_Calls
.Check_Exception
(Self_Id
, Entry_Call
);
504 end Call_Synchronous
;
510 function Callable
(T
: Task_Id
) return Boolean is
512 Self_Id
: constant Task_Id
:= STPO
.Self
;
515 Initialization
.Defer_Abort
(Self_Id
);
522 Result
:= T
.Callable
;
529 Initialization
.Undefer_Abort
(Self_Id
);
533 ----------------------------
534 -- Cancel_Task_Entry_Call --
535 ----------------------------
537 procedure Cancel_Task_Entry_Call
(Cancelled
: out Boolean) is
539 Entry_Calls
.Try_To_Cancel_Entry_Call
(Cancelled
);
540 end Cancel_Task_Entry_Call
;
542 -------------------------
543 -- Complete_Rendezvous --
544 -------------------------
546 procedure Complete_Rendezvous
is
548 Exceptional_Complete_Rendezvous
(Ada
.Exceptions
.Null_Id
);
549 end Complete_Rendezvous
;
551 -------------------------------------
552 -- Exceptional_Complete_Rendezvous --
553 -------------------------------------
555 procedure Exceptional_Complete_Rendezvous
556 (Ex
: Ada
.Exceptions
.Exception_Id
)
558 Self_Id
: constant Task_Id
:= STPO
.Self
;
559 Entry_Call
: Entry_Call_Link
:= Self_Id
.Common
.Call
;
561 Called_PO
: STPE
.Protection_Entries_Access
;
562 Acceptor_Prev_Priority
: Integer;
564 Exception_To_Raise
: Ada
.Exceptions
.Exception_Id
:= Ex
;
565 Ceiling_Violation
: Boolean;
567 use type Ada
.Exceptions
.Exception_Id
;
568 procedure Internal_Reraise
;
569 pragma Import
(C
, Internal_Reraise
, "__gnat_reraise");
571 procedure Transfer_Occurrence
572 (Target
: Ada
.Exceptions
.Exception_Occurrence_Access
;
573 Source
: Ada
.Exceptions
.Exception_Occurrence
);
574 pragma Import
(C
, Transfer_Occurrence
, "__gnat_transfer_occurrence");
576 use type STPE
.Protection_Entries_Access
;
579 -- Consider phasing out Complete_Rendezvous in favor
580 -- of direct call to this with Ada.Exceptions.Null_ID.
581 -- See code expansion examples for Accept_Call and Selective_Wait.
582 -- Also consider putting an explicit re-raise after this call, in
583 -- the generated code. That way we could eliminate the
584 -- code here that reraises the exception.
586 -- The deferral level is critical here,
587 -- since we want to raise an exception or allow abort to take
588 -- place, if there is an exception or abort pending.
591 (Debug
.Trace
(Self_Id
, "Exceptional_Complete_Rendezvous", 'R'));
593 if Ex
= Ada
.Exceptions
.Null_Id
then
594 -- The call came from normal end-of-rendezvous,
595 -- so abort is not yet deferred.
597 if Parameters
.Runtime_Traces
then
598 Send_Trace_Info
(M_RDV_Complete
, Entry_Call
.Self
);
601 Initialization
.Defer_Abort_Nestable
(Self_Id
);
604 -- We need to clean up any accepts which Self may have
605 -- been serving when it was aborted.
607 if Ex
= Standard
'Abort_Signal'Identity then
612 while Entry_Call /= null loop
613 Entry_Call.Exception_To_Raise := Tasking_Error'Identity;
615 -- All forms of accept make sure that the acceptor is not
616 -- completed, before accepting further calls, so that we
617 -- can be sure that no further calls are made after the
618 -- current calls are purged.
620 Caller := Entry_Call.Self;
622 -- Take write lock. This follows the lock precedence rule that
623 -- Caller may be locked while holding lock of Acceptor.
624 -- Complete the call abnormally, with exception.
626 STPO.Write_Lock (Caller);
627 Initialization.Wakeup_Entry_Caller (Self_Id, Entry_Call, Done);
628 STPO.Unlock (Caller);
629 Entry_Call := Entry_Call.Acceptor_Prev_Call;
637 Caller := Entry_Call.Self;
639 if Entry_Call.Needs_Requeue then
640 -- We dare not lock Self_Id at the same time as Caller,
641 -- for fear of deadlock.
643 Entry_Call.Needs_Requeue := False;
644 Self_Id.Common.Call := Entry_Call.Acceptor_Prev_Call;
646 if Entry_Call.Called_Task /= null then
647 -- Requeue to another task entry
653 if not Task_Do_Or_Queue
654 (Self_Id, Entry_Call, Entry_Call.Requeue_With_Abort)
660 Initialization.Undefer_Abort (Self_Id);
669 -- Requeue to a protected entry
671 Called_PO := POE.To_Protection (Entry_Call.Called_PO);
672 STPE.Lock_Entries (Called_PO, Ceiling_Violation);
674 if Ceiling_Violation then
675 pragma Assert (Ex = Ada.Exceptions.Null_Id);
677 Exception_To_Raise := Program_Error'Identity;
678 Entry_Call.Exception_To_Raise := Exception_To_Raise;
684 STPO.Write_Lock (Caller);
685 Initialization.Wakeup_Entry_Caller
686 (Self_Id, Entry_Call, Done);
687 STPO.Unlock (Caller);
695 (Self_Id, Called_PO, Entry_Call,
696 Entry_Call.Requeue_With_Abort);
697 POO.PO_Service_Entries (Self_Id, Called_PO);
701 Entry_Calls.Reset_Priority
702 (Self_Id, Entry_Call.Acceptor_Prev_Priority);
705 -- The call does not need to be requeued
707 Self_Id.Common.Call := Entry_Call.Acceptor_Prev_Call;
708 Entry_Call.Exception_To_Raise := Ex;
714 STPO.Write_Lock (Caller);
716 -- Done with Caller locked to make sure that Wakeup is not lost
718 if Ex /= Ada.Exceptions.Null_Id then
720 (Caller.Common.Compiler_Data.Current_Excep'Access,
721 Self_Id.Common.Compiler_Data.Current_Excep);
724 Acceptor_Prev_Priority := Entry_Call.Acceptor_Prev_Priority;
725 Initialization.Wakeup_Entry_Caller (Self_Id, Entry_Call, Done);
727 STPO.Unlock (Caller);
733 Entry_Calls.Reset_Priority (Self_Id, Acceptor_Prev_Priority);
737 Initialization.Undefer_Abort (Self_Id);
739 if Exception_To_Raise /= Ada.Exceptions.Null_Id then
743 -- ??? Do we need to give precedence to Program_Error that might be
744 -- raised due to failure of finalization, over Tasking_Error from
745 -- failure of requeue?
746 end Exceptional_Complete_Rendezvous;
748 -------------------------------------
749 -- Requeue_Protected_To_Task_Entry --
750 -------------------------------------
752 procedure Requeue_Protected_To_Task_Entry
753 (Object : STPE.Protection_Entries_Access;
755 E : Task_Entry_Index;
756 With_Abort : Boolean)
758 Entry_Call : constant Entry_Call_Link := Object.Call_In_Progress;
760 pragma Assert (STPO.Self.Deferral_Level > 0);
762 Entry_Call.E := Entry_Index (E);
763 Entry_Call.Called_Task := Acceptor;
764 Entry_Call.Called_PO := Null_Address;
765 Entry_Call.Requeue_With_Abort := With_Abort;
766 Object.Call_In_Progress := null;
767 end Requeue_Protected_To_Task_Entry;
769 ------------------------
770 -- Requeue_Task_Entry --
771 ------------------------
773 procedure Requeue_Task_Entry
775 E : Task_Entry_Index;
776 With_Abort : Boolean)
778 Self_Id : constant Task_Id := STPO.Self;
779 Entry_Call : constant Entry_Call_Link := Self_Id.Common.Call;
782 Initialization.Defer_Abort (Self_Id);
783 Entry_Call.Needs_Requeue := True;
784 Entry_Call.Requeue_With_Abort := With_Abort;
785 Entry_Call.E := Entry_Index (E);
786 Entry_Call.Called_Task := Acceptor;
787 Initialization.Undefer_Abort (Self_Id);
788 end Requeue_Task_Entry;
794 procedure Selective_Wait
795 (Open_Accepts : Accept_List_Access;
796 Select_Mode : Select_Modes;
797 Uninterpreted_Data : out System.Address;
798 Index : out Select_Index)
800 Self_Id : constant Task_Id := STPO.Self;
801 Entry_Call : Entry_Call_Link;
802 Treatment : Select_Treatment;
804 Selection : Select_Index;
805 Open_Alternative : Boolean;
808 Initialization.Defer_Abort (Self_Id);
814 STPO.Write_Lock (Self_Id);
816 if not Self_Id.Callable then
817 pragma Assert (Self_Id.Pending_ATC_Level = 0);
819 pragma Assert (Self_Id.Pending_Action);
821 STPO.Unlock (Self_Id);
827 -- ??? In some cases abort is deferred more than once. Need to
828 -- figure out why this happens.
830 if Self_Id.Deferral_Level > 1 then
831 Self_Id.Deferral_Level := 1;
834 Initialization.Undefer_Abort (Self_Id);
836 -- Should never get here ???
838 pragma Assert (False);
839 raise Standard'Abort_Signal;
842 pragma Assert (Open_Accepts /= null);
844 Uninterpreted_Data := Null_Address;
846 Queuing.Select_Task_Entry_Call
847 (Self_Id, Open_Accepts, Entry_Call, Selection, Open_Alternative);
849 -- Determine the kind and disposition of the select
851 Treatment := Default_Treatment (Select_Mode);
852 Self_Id.Chosen_Index := No_Rendezvous;
854 if Open_Alternative then
855 if Entry_Call /= null then
856 if Open_Accepts (Selection).Null_Body then
857 Treatment := Accept_Alternative_Completed;
859 Setup_For_Rendezvous_With_Body (Entry_Call, Self_Id);
860 Treatment := Accept_Alternative_Selected;
863 Self_Id.Chosen_Index := Selection;
865 elsif Treatment = No_Alternative_Open then
866 Treatment := Accept_Alternative_Open;
870 -- Handle the select according to the disposition selected above
873 when Accept_Alternative_Selected =>
874 -- Ready to rendezvous
876 Uninterpreted_Data := Self_Id.Common.Call.Uninterpreted_Data;
878 -- In this case the accept body is not Null_Body. Defer abort
879 -- until it gets into the accept body.
881 pragma Assert (Self_Id.Deferral_Level = 1);
883 Initialization.Defer_Abort_Nestable (Self_Id);
884 STPO.Unlock (Self_Id);
886 when Accept_Alternative_Completed =>
888 -- Accept body is null, so rendezvous is over immediately
890 if Parameters.Runtime_Traces then
891 Send_Trace_Info (M_RDV_Complete, Entry_Call.Self);
894 STPO.Unlock (Self_Id);
895 Caller := Entry_Call.Self;
897 STPO.Write_Lock (Caller);
898 Initialization.Wakeup_Entry_Caller (Self_Id, Entry_Call, Done);
899 STPO.Unlock (Caller);
901 when Accept_Alternative_Open =>
905 Self_Id.Open_Accepts := Open_Accepts;
907 (Debug.Trace (Self_Id, "Selective_Wait: wait", 'R
'));
909 if Parameters.Runtime_Traces then
910 Send_Trace_Info (W_Select, Self_Id,
911 Integer (Open_Accepts'Length));
914 Wait_For_Call (Self_Id);
916 pragma Assert (Self_Id.Open_Accepts = null);
918 -- Self_Id.Common.Call should already be updated by the Caller if
919 -- not aborted. It might also be ready to do rendezvous even if
920 -- this wakes up due to an abort. Therefore, if the call is not
921 -- empty we need to do the rendezvous if the accept body is not
924 -- Aren't the first two conditions below redundant???
926 if Self_Id.Chosen_Index /= No_Rendezvous
927 and then Self_Id.Common.Call /= null
928 and then not Open_Accepts (Self_Id.Chosen_Index).Null_Body
930 Uninterpreted_Data := Self_Id.Common.Call.Uninterpreted_Data;
932 pragma Assert (Self_Id.Deferral_Level = 1);
934 Initialization.Defer_Abort_Nestable (Self_Id);
936 -- Leave abort deferred until the accept body
939 STPO.Unlock (Self_Id);
941 when Else_Selected =>
942 pragma Assert (Self_Id.Open_Accepts = null);
944 if Parameters.Runtime_Traces then
945 Send_Trace_Info (M_Select_Else);
948 STPO.Unlock (Self_Id);
950 when Terminate_Selected =>
951 -- Terminate alternative is open
953 Self_Id.Open_Accepts := Open_Accepts;
954 Self_Id.Common.State := Acceptor_Sleep;
956 -- Notify ancestors that this task is on a terminate alternative
958 STPO.Unlock (Self_Id);
959 Utilities.Make_Passive (Self_Id, Task_Completed => False);
960 STPO.Write_Lock (Self_Id);
962 -- Wait for normal entry call or termination
964 Wait_For_Call (Self_Id);
966 pragma Assert (Self_Id.Open_Accepts = null);
968 if Self_Id.Terminate_Alternative then
969 -- An entry call should have reset this to False,
970 -- so we must be aborted.
971 -- We cannot be in an async. select, since that
972 -- is not legal, so the abort must be of the entire
973 -- task. Therefore, we do not need to cancel the
974 -- terminate alternative. The cleanup will be done
975 -- in Complete_Master.
977 pragma Assert (Self_Id.Pending_ATC_Level = 0);
978 pragma Assert (Self_Id.Awake_Count = 0);
980 STPO.Unlock (Self_Id);
986 Index := Self_Id.Chosen_Index;
987 Initialization.Undefer_Abort_Nestable (Self_Id);
989 if Self_Id.Pending_Action then
990 Initialization.Do_Pending_Action (Self_Id);
996 -- Self_Id.Common.Call and Self_Id.Chosen_Index
997 -- should already be updated by the Caller.
999 if Self_Id.Chosen_Index /= No_Rendezvous
1000 and then not Open_Accepts (Self_Id.Chosen_Index).Null_Body
1002 Uninterpreted_Data := Self_Id.Common.Call.Uninterpreted_Data;
1004 pragma Assert (Self_Id.Deferral_Level = 1);
1006 -- We need an extra defer here, to keep abort
1007 -- deferred until we get into the accept body
1009 Initialization.Defer_Abort_Nestable (Self_Id);
1013 STPO.Unlock (Self_Id);
1015 when No_Alternative_Open =>
1016 -- In this case, Index will be No_Rendezvous on return, which
1017 -- should cause a Program_Error if it is not a Delay_Mode.
1019 -- If delay alternative exists (Delay_Mode) we should suspend
1020 -- until the delay expires.
1022 Self_Id.Open_Accepts := null;
1024 if Select_Mode = Delay_Mode then
1025 Self_Id.Common.State := Delay_Sleep;
1028 Initialization.Poll_Base_Priority_Change (Self_Id);
1030 Self_Id.Pending_ATC_Level < Self_Id.ATC_Nesting_Level;
1031 Sleep (Self_Id, Delay_Sleep);
1034 Self_Id.Common.State := Runnable;
1035 STPO.Unlock (Self_Id);
1038 STPO.Unlock (Self_Id);
1044 Initialization.Undefer_Abort (Self_Id);
1045 Ada.Exceptions.Raise_Exception
1046 (Program_Error'Identity, "Entry call not a delay mode");
1054 -- Caller has been chosen.
1055 -- Self_Id.Common.Call should already be updated by the Caller.
1056 -- Self_Id.Chosen_Index should either be updated by the Caller
1057 -- or by Test_Selective_Wait.
1058 -- On return, we sill start rendezvous unless the accept body is
1059 -- null. In the latter case, we will have already completed the RV.
1061 Index := Self_Id.Chosen_Index;
1062 Initialization.Undefer_Abort_Nestable (Self_Id);
1065 ------------------------------------
1066 -- Setup_For_Rendezvous_With_Body --
1067 ------------------------------------
1069 procedure Setup_For_Rendezvous_With_Body
1070 (Entry_Call : Entry_Call_Link;
1071 Acceptor : Task_Id) is
1073 Entry_Call.Acceptor_Prev_Call := Acceptor.Common.Call;
1074 Acceptor.Common.Call := Entry_Call;
1076 if Entry_Call.State = Now_Abortable then
1077 Entry_Call.State := Was_Abortable;
1080 Boost_Priority (Entry_Call, Acceptor);
1081 end Setup_For_Rendezvous_With_Body;
1087 function Task_Count (E : Task_Entry_Index) return Natural is
1088 Self_Id : constant Task_Id := STPO.Self;
1089 Return_Count : Natural;
1092 Initialization.Defer_Abort (Self_Id);
1098 STPO.Write_Lock (Self_Id);
1099 Return_Count := Queuing.Count_Waiting (Self_Id.Entry_Queues (E));
1100 STPO.Unlock (Self_Id);
1106 Initialization.Undefer_Abort (Self_Id);
1107 return Return_Count;
1110 ----------------------
1111 -- Task_Do_Or_Queue --
1112 ----------------------
1114 function Task_Do_Or_Queue
1116 Entry_Call : Entry_Call_Link;
1117 With_Abort : Boolean) return Boolean
1119 E : constant Task_Entry_Index :=
1120 Task_Entry_Index (Entry_Call.E);
1121 Old_State : constant Entry_Call_State := Entry_Call.State;
1122 Acceptor : constant Task_Id := Entry_Call.Called_Task;
1123 Parent : constant Task_Id := Acceptor.Common.Parent;
1124 Parent_Locked : Boolean := False;
1125 Null_Body : Boolean;
1128 -- Find out whether Entry_Call can be accepted immediately.
1129 -- If the Acceptor is not callable, return False.
1130 -- If the rendezvous can start, initiate it.
1131 -- If the accept-body is trivial, also complete the rendezvous.
1132 -- If the acceptor is not ready, enqueue the call.
1134 -- This should have a special case for Accept_Call and Accept_Trivial,
1135 -- so that we don't have the loop setup overhead, below.
1137 -- The call state Done is used here and elsewhere to include both the
1138 -- case of normal successful completion, and the case of an exception
1139 -- being raised. The difference is that if an exception is raised no one
1140 -- will pay attention to the fact that State = Done. Instead the
1141 -- exception will be raised in Undefer_Abort, and control will skip past
1142 -- the place where we normally would resume from an entry call.
1144 pragma Assert (not Queuing.Onqueue (Entry_Call));
1146 -- We rely that the call is off-queue for protection, that the caller
1147 -- will not exit the Entry_Caller_Sleep, and so will not reuse the call
1148 -- record for another call.
1149 -- We rely on the Caller's lock for call State mod's.
1151 -- We can't lock Acceptor.Parent while holding Acceptor,
1152 -- so lock it in advance if we expect to need to lock it.
1154 if Acceptor.Terminate_Alternative then
1155 STPO.Write_Lock (Parent);
1156 Parent_Locked := True;
1159 STPO.Write_Lock (Acceptor);
1161 -- If the acceptor is not callable, abort the call and return False
1163 if not Acceptor.Callable then
1164 STPO.Unlock (Acceptor);
1166 if Parent_Locked then
1167 STPO.Unlock (Parent);
1170 pragma Assert (Entry_Call.State < Done);
1172 -- In case we are not the caller, set up the caller
1173 -- to raise Tasking_Error when it wakes up.
1175 STPO.Write_Lock (Entry_Call.Self);
1176 Entry_Call.Exception_To_Raise := Tasking_Error'Identity;
1177 Initialization.Wakeup_Entry_Caller (Self_ID, Entry_Call, Done);
1178 STPO.Unlock (Entry_Call.Self);
1183 -- Try to serve the call immediately
1185 if Acceptor.Open_Accepts /= null then
1186 for J in Acceptor.Open_Accepts'Range loop
1187 if Entry_Call.E = Entry_Index (Acceptor.Open_Accepts (J).S) then
1189 -- Commit acceptor to rendezvous with us
1191 Acceptor.Chosen_Index := J;
1192 Null_Body := Acceptor.Open_Accepts (J).Null_Body;
1193 Acceptor.Open_Accepts := null;
1195 -- Prevent abort while call is being served
1197 if Entry_Call.State = Now_Abortable then
1198 Entry_Call.State := Was_Abortable;
1201 if Acceptor.Terminate_Alternative then
1203 -- Cancel terminate alternative. See matching code in
1204 -- Selective_Wait and Vulnerable_Complete_Master.
1206 Acceptor.Terminate_Alternative := False;
1207 Acceptor.Awake_Count := Acceptor.Awake_Count + 1;
1209 if Acceptor.Awake_Count = 1 then
1211 -- Notify parent that acceptor is awake
1213 pragma Assert (Parent.Awake_Count > 0);
1215 Parent.Awake_Count := Parent.Awake_Count + 1;
1217 if Parent.Common.State = Master_Completion_Sleep
1218 and then Acceptor.Master_of_Task = Parent.Master_Within
1220 Parent.Common.Wait_Count :=
1221 Parent.Common.Wait_Count + 1;
1228 -- Rendezvous is over immediately
1230 STPO.Wakeup (Acceptor, Acceptor_Sleep);
1231 STPO.Unlock (Acceptor);
1233 if Parent_Locked then
1234 STPO.Unlock (Parent);
1237 STPO.Write_Lock (Entry_Call.Self);
1238 Initialization.Wakeup_Entry_Caller
1239 (Self_ID, Entry_Call, Done);
1240 STPO.Unlock (Entry_Call.Self);
1243 Setup_For_Rendezvous_With_Body (Entry_Call, Acceptor);
1245 -- For terminate_alternative, acceptor may not be asleep
1246 -- yet, so we skip the wakeup
1248 if Acceptor.Common.State /= Runnable then
1249 STPO.Wakeup (Acceptor, Acceptor_Sleep);
1252 STPO.Unlock (Acceptor);
1254 if Parent_Locked then
1255 STPO.Unlock (Parent);
1263 -- The acceptor is accepting, but not this entry
1266 -- If the acceptor was ready to accept this call,
1267 -- we would not have gotten this far, so now we should
1268 -- (re)enqueue the call, if the mode permits that.
1270 if Entry_Call.Mode /= Conditional_Call
1271 or else not With_Abort
1273 -- Timed_Call, Simple_Call, or Asynchronous_Call
1275 Queuing.Enqueue (Acceptor.Entry_Queues (E), Entry_Call);
1277 -- Update abortability of call
1279 pragma Assert (Old_State < Done);
1281 Entry_Call.State := New_State (With_Abort, Entry_Call.State);
1283 STPO.Unlock (Acceptor);
1285 if Parent_Locked then
1286 STPO.Unlock (Parent);
1289 if Old_State /= Entry_Call.State
1290 and then Entry_Call.State = Now_Abortable
1291 and then Entry_Call.Mode > Simple_Call
1292 and then Entry_Call.Self /= Self_ID
1294 -- Asynchronous_Call or Conditional_Call
1297 -- Because of ATCB lock ordering rule
1299 STPO.Write_Lock (Entry_Call.Self);
1301 if Entry_Call.Self.Common.State = Async_Select_Sleep then
1303 -- Caller may not yet have reached wait-point
1305 STPO.Wakeup (Entry_Call.Self, Async_Select_Sleep);
1308 STPO.Unlock (Entry_Call.Self);
1312 -- Conditional_Call and With_Abort
1314 STPO.Unlock (Acceptor);
1316 if Parent_Locked then
1317 STPO.Unlock (Parent);
1320 STPO.Write_Lock (Entry_Call.Self);
1322 pragma Assert (Entry_Call.State >= Was_Abortable);
1324 Initialization.Wakeup_Entry_Caller (Self_ID, Entry_Call, Cancelled);
1325 STPO.Unlock (Entry_Call.Self);
1329 end Task_Do_Or_Queue;
1331 ---------------------
1332 -- Task_Entry_Call --
1333 ---------------------
1335 procedure Task_Entry_Call
1336 (Acceptor : Task_Id;
1337 E : Task_Entry_Index;
1338 Uninterpreted_Data : System.Address;
1340 Rendezvous_Successful : out Boolean)
1342 Self_Id : constant Task_Id := STPO.Self;
1343 Entry_Call : Entry_Call_Link;
1346 -- If pragma Detect_Blocking is active then Program_Error must be
1347 -- raised if this potentially blocking operation is called from a
1348 -- protected action.
1350 if System.Tasking.Detect_Blocking
1351 and then Self_Id.Common.Protected_Action_Nesting > 0
1353 Ada.Exceptions.Raise_Exception
1354 (Program_Error'Identity, "potentially blocking operation");
1357 if Parameters.Runtime_Traces then
1358 Send_Trace_Info (W_Call, Acceptor, Entry_Index (E));
1361 if Mode = Simple_Call or else Mode = Conditional_Call then
1363 (Acceptor, E, Uninterpreted_Data, Mode, Rendezvous_Successful);
1366 -- This is an asynchronous call
1368 -- Abort must already be deferred by the compiler-generated code.
1369 -- Without this, an abort that occurs between the time that this
1370 -- call is made and the time that the abortable part's cleanup
1371 -- handler is set up might miss the cleanup handler and leave the
1374 Self_Id.ATC_Nesting_Level := Self_Id.ATC_Nesting_Level + 1;
1376 (Debug.Trace (Self_Id, "TEC: entered ATC level: " &
1377 ATC_Level'Image (Self_Id.ATC_Nesting_Level), 'A
'));
1378 Entry_Call := Self_Id.Entry_Calls (Self_Id.ATC_Nesting_Level)'Access;
1379 Entry_Call.Next := null;
1380 Entry_Call.Mode := Mode;
1381 Entry_Call.Cancellation_Attempted := False;
1382 Entry_Call.State := Not_Yet_Abortable;
1383 Entry_Call.E := Entry_Index (E);
1384 Entry_Call.Prio := Get_Priority (Self_Id);
1385 Entry_Call.Uninterpreted_Data := Uninterpreted_Data;
1386 Entry_Call.Called_Task := Acceptor;
1387 Entry_Call.Called_PO := Null_Address;
1388 Entry_Call.Exception_To_Raise := Ada.Exceptions.Null_Id;
1394 if not Task_Do_Or_Queue
1395 (Self_Id, Entry_Call, With_Abort => True)
1397 STPO.Write_Lock (Self_Id);
1398 Utilities.Exit_One_ATC_Level (Self_Id);
1399 STPO.Unlock (Self_Id);
1405 Initialization.Undefer_Abort (Self_Id);
1407 if Parameters.Runtime_Traces then
1408 Send_Trace_Info (E_Missed, Acceptor);
1411 raise Tasking_Error;
1414 -- The following is special for async. entry calls.
1415 -- If the call was not queued abortably, we need to wait until
1416 -- it is before proceeding with the abortable part.
1418 -- Wait_Until_Abortable can be called unconditionally here,
1419 -- but it is expensive.
1421 if Entry_Call.State < Was_Abortable then
1422 Entry_Calls.Wait_Until_Abortable (Self_Id, Entry_Call);
1429 -- Note: following assignment needs to be atomic
1431 Rendezvous_Successful := Entry_Call.State = Done;
1433 end Task_Entry_Call;
1435 -----------------------
1436 -- Task_Entry_Caller --
1437 -----------------------
1439 function Task_Entry_Caller (D : Task_Entry_Nesting_Depth) return Task_Id is
1440 Self_Id : constant Task_Id := STPO.Self;
1441 Entry_Call : Entry_Call_Link;
1444 Entry_Call := Self_Id.Common.Call;
1446 for Depth in 1 .. D loop
1447 Entry_Call := Entry_Call.Acceptor_Prev_Call;
1448 pragma Assert (Entry_Call /= null);
1451 return Entry_Call.Self;
1452 end Task_Entry_Caller;
1454 --------------------------
1455 -- Timed_Selective_Wait --
1456 --------------------------
1458 procedure Timed_Selective_Wait
1459 (Open_Accepts : Accept_List_Access;
1460 Select_Mode : Select_Modes;
1461 Uninterpreted_Data : out System.Address;
1464 Index : out Select_Index)
1466 Self_Id : constant Task_Id := STPO.Self;
1467 Treatment : Select_Treatment;
1468 Entry_Call : Entry_Call_Link;
1470 Selection : Select_Index;
1471 Open_Alternative : Boolean;
1472 Timedout : Boolean := False;
1473 Yielded : Boolean := True;
1476 pragma Assert (Select_Mode = Delay_Mode);
1478 Initialization.Defer_Abort (Self_Id);
1480 -- If we are aborted here, the effect will be pending
1486 STPO.Write_Lock (Self_Id);
1488 if not Self_Id.Callable then
1489 pragma Assert (Self_Id.Pending_ATC_Level = 0);
1491 pragma Assert (Self_Id.Pending_Action);
1493 STPO.Unlock (Self_Id);
1499 Initialization.Undefer_Abort (Self_Id);
1501 -- Should never get here ???
1503 pragma Assert (False);
1504 raise Standard'Abort_Signal;
1507 Uninterpreted_Data := Null_Address;
1509 pragma Assert (Open_Accepts /= null);
1511 Queuing.Select_Task_Entry_Call
1512 (Self_Id, Open_Accepts, Entry_Call, Selection, Open_Alternative);
1514 -- Determine the kind and disposition of the select
1516 Treatment := Default_Treatment (Select_Mode);
1517 Self_Id.Chosen_Index := No_Rendezvous;
1519 if Open_Alternative then
1520 if Entry_Call /= null then
1521 if Open_Accepts (Selection).Null_Body then
1522 Treatment := Accept_Alternative_Completed;
1525 Setup_For_Rendezvous_With_Body (Entry_Call, Self_Id);
1526 Treatment := Accept_Alternative_Selected;
1529 Self_Id.Chosen_Index := Selection;
1531 elsif Treatment = No_Alternative_Open then
1532 Treatment := Accept_Alternative_Open;
1536 -- Handle the select according to the disposition selected above
1539 when Accept_Alternative_Selected =>
1540 -- Ready to rendezvous
1541 -- In this case the accept body is not Null_Body. Defer abort
1542 -- until it gets into the accept body.
1544 Uninterpreted_Data := Self_Id.Common.Call.Uninterpreted_Data;
1545 Initialization.Defer_Abort (Self_Id);
1546 STPO.Unlock (Self_Id);
1548 when Accept_Alternative_Completed =>
1549 -- Rendezvous is over
1551 if Parameters.Runtime_Traces then
1552 Send_Trace_Info (M_RDV_Complete, Entry_Call.Self);
1555 STPO.Unlock (Self_Id);
1556 Caller := Entry_Call.Self;
1558 STPO.Write_Lock (Caller);
1559 Initialization.Wakeup_Entry_Caller (Self_Id, Entry_Call, Done);
1560 STPO.Unlock (Caller);
1562 when Accept_Alternative_Open =>
1566 Self_Id.Open_Accepts := Open_Accepts;
1568 -- Wait for a normal call and a pending action until the
1569 -- Wakeup_Time is reached.
1571 -- Try to remove calls to Sleep in the loop below by letting the
1572 -- caller a chance of getting ready immediately, using Unlock
1573 -- Yield. See similar action in Wait_For_Completion/Wait_For_Call.
1581 if Self_Id.Open_Accepts /= null then
1588 Write_Lock (Self_Id);
1591 -- Check if this task has been aborted while the lock was released
1593 if Self_Id.Pending_ATC_Level < Self_Id.ATC_Nesting_Level then
1594 Self_Id.Open_Accepts := null;
1597 Self_Id.Common.State := Acceptor_Sleep;
1600 Initialization.Poll_Base_Priority_Change (Self_Id);
1601 exit when Self_Id.Open_Accepts = null;
1604 Sleep (Self_Id, Acceptor_Sleep);
1606 if Parameters.Runtime_Traces then
1607 Send_Trace_Info (WT_Select,
1609 Integer (Open_Accepts'Length),
1613 STPO.Timed_Sleep (Self_Id, Timeout, Mode,
1614 Acceptor_Sleep, Timedout, Yielded);
1618 Self_Id.Open_Accepts := null;
1620 if Parameters.Runtime_Traces then
1621 Send_Trace_Info (E_Timeout);
1626 Self_Id.Common.State := Runnable;
1628 -- Self_Id.Common.Call should already be updated by the Caller if
1629 -- not aborted. It might also be ready to do rendezvous even if
1630 -- this wakes up due to an abort. Therefore, if the call is not
1631 -- empty we need to do the rendezvous if the accept body is not
1634 if Self_Id.Chosen_Index /= No_Rendezvous
1635 and then Self_Id.Common.Call /= null
1636 and then not Open_Accepts (Self_Id.Chosen_Index).Null_Body
1638 Uninterpreted_Data := Self_Id.Common.Call.Uninterpreted_Data;
1640 pragma Assert (Self_Id.Deferral_Level = 1);
1642 Initialization.Defer_Abort_Nestable (Self_Id);
1644 -- Leave abort deferred until the accept body
1647 STPO.Unlock (Self_Id);
1649 when No_Alternative_Open =>
1650 -- In this case, Index will be No_Rendezvous on return. We sleep
1651 -- for the time we need to.
1652 -- Wait for a signal or timeout. A wakeup can be made
1653 -- for several reasons:
1654 -- 1) Delay is expired
1655 -- 2) Pending_Action needs to be checked
1656 -- (Abort, Priority change)
1657 -- 3) Spurious wakeup
1659 Self_Id.Open_Accepts := null;
1660 Self_Id.Common.State := Acceptor_Sleep;
1662 Initialization.Poll_Base_Priority_Change (Self_Id);
1664 STPO.Timed_Sleep (Self_Id, Timeout, Mode, Acceptor_Sleep,
1667 Self_Id.Common.State := Runnable;
1669 STPO.Unlock (Self_Id);
1672 -- Should never get here
1673 pragma Assert (False);
1685 -- Caller has been chosen
1687 -- Self_Id.Common.Call should already be updated by the Caller
1689 -- Self_Id.Chosen_Index should either be updated by the Caller
1690 -- or by Test_Selective_Wait
1692 Index := Self_Id.Chosen_Index;
1693 Initialization.Undefer_Abort_Nestable (Self_Id);
1695 -- Start rendezvous, if not already completed
1696 end Timed_Selective_Wait;
1698 ---------------------------
1699 -- Timed_Task_Entry_Call --
1700 ---------------------------
1702 procedure Timed_Task_Entry_Call
1703 (Acceptor : Task_Id;
1704 E : Task_Entry_Index;
1705 Uninterpreted_Data : System.Address;
1708 Rendezvous_Successful : out Boolean)
1710 Self_Id : constant Task_Id := STPO.Self;
1712 Entry_Call : Entry_Call_Link;
1716 -- If pragma Detect_Blocking is active then Program_Error must be
1717 -- raised if this potentially blocking operation is called from a
1718 -- protected action.
1720 if System.Tasking.Detect_Blocking
1721 and then Self_Id.Common.Protected_Action_Nesting > 0
1723 Ada.Exceptions.Raise_Exception
1724 (Program_Error'Identity, "potentially blocking operation");
1727 Initialization.Defer_Abort (Self_Id);
1728 Self_Id.ATC_Nesting_Level := Self_Id.ATC_Nesting_Level + 1;
1731 (Debug.Trace (Self_Id, "TTEC: entered ATC level: " &
1732 ATC_Level'Image (Self_Id.ATC_Nesting_Level), 'A
'));
1734 if Parameters.Runtime_Traces then
1735 Send_Trace_Info (WT_Call, Acceptor,
1736 Entry_Index (E), Timeout);
1739 Level := Self_Id.ATC_Nesting_Level;
1740 Entry_Call := Self_Id.Entry_Calls (Level)'Access;
1741 Entry_Call.Next := null;
1742 Entry_Call.Mode := Timed_Call;
1743 Entry_Call.Cancellation_Attempted := False;
1745 -- If this is a call made inside of an abort deferred region,
1746 -- the call should be never abortable.
1748 if Self_Id.Deferral_Level > 1 then
1749 Entry_Call.State := Never_Abortable;
1751 Entry_Call.State := Now_Abortable;
1754 Entry_Call.E := Entry_Index (E);
1755 Entry_Call.Prio := Get_Priority (Self_Id);
1756 Entry_Call.Uninterpreted_Data := Uninterpreted_Data;
1757 Entry_Call.Called_Task := Acceptor;
1758 Entry_Call.Called_PO := Null_Address;
1759 Entry_Call.Exception_To_Raise := Ada.Exceptions.Null_Id;
1761 -- Note: the caller will undefer abort on return (see WARNING above)
1767 if not Task_Do_Or_Queue
1768 (Self_Id, Entry_Call, With_Abort => True)
1770 STPO.Write_Lock (Self_Id);
1771 Utilities.Exit_One_ATC_Level (Self_Id);
1772 STPO.Unlock (Self_Id);
1778 Initialization.Undefer_Abort (Self_Id);
1780 if Parameters.Runtime_Traces then
1781 Send_Trace_Info (E_Missed, Acceptor);
1783 raise Tasking_Error;
1786 Write_Lock (Self_Id);
1787 Entry_Calls.Wait_For_Completion_With_Timeout
1788 (Entry_Call, Timeout, Mode, Yielded);
1795 -- ??? Do we need to yield in case Yielded is False
1797 Rendezvous_Successful := Entry_Call.State = Done;
1798 Initialization.Undefer_Abort (Self_Id);
1799 Entry_Calls.Check_Exception (Self_Id, Entry_Call);
1800 end Timed_Task_Entry_Call;
1806 procedure Wait_For_Call (Self_Id : Task_Id) is
1808 -- Try to remove calls to Sleep in the loop below by letting the caller
1809 -- a chance of getting ready immediately, using Unlock & Yield.
1810 -- See similar action in Wait_For_Completion & Selective_Wait.
1818 if Self_Id.Open_Accepts /= null then
1825 Write_Lock (Self_Id);
1828 -- Check if this task has been aborted while the lock was released
1830 if Self_Id.Pending_ATC_Level < Self_Id.ATC_Nesting_Level then
1831 Self_Id.Open_Accepts := null;
1834 Self_Id.Common.State := Acceptor_Sleep;
1837 Initialization.Poll_Base_Priority_Change (Self_Id);
1839 exit when Self_Id.Open_Accepts = null;
1841 Sleep (Self_Id, Acceptor_Sleep);
1844 Self_Id.Common.State := Runnable;
1847 end System.Tasking.Rendezvous;