diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-03 15:42:23 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-03 15:42:23 +0000 |
commit | 63740d1a0b295bd19f3e92ee45b817cc932b5c4a (patch) | |
tree | a567f37d6620f7897e8162479e2d462ff14e3131 /gcc/ada/s-tasren.adb | |
parent | a5342ce68dd70eff04503899cb28be77fc6e0ca0 (diff) | |
download | gcc-63740d1a0b295bd19f3e92ee45b817cc932b5c4a.tar.gz |
* s-tasini.ads, s-tasini.adb (Undefer_Abortion): Handle case of
Self_Id.Deferral_Level = 0.
(Do_Pending_Action): Move this function to the spec.
* s-tasren.adb (Selective_Wait [Terminate_Selected]): Call
Do_Pending_Action explicitely when needed, in case we're using
No_Abort restrictions.
* s-tassta.adb (Create_Task): If Abort is not allowed, reset the
deferral level since it will not get changed by the generated code.
Keeping a default value of 1 would prevent some operations (e.g.
select or delay) to proceed successfully.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92851 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-tasren.adb')
-rw-r--r-- | gcc/ada/s-tasren.adb | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gcc/ada/s-tasren.adb b/gcc/ada/s-tasren.adb index 5763272ce24..9002eeeb031 100644 --- a/gcc/ada/s-tasren.adb +++ b/gcc/ada/s-tasren.adb @@ -55,6 +55,7 @@ with System.Tasking.Initialization; -- used for Defer_Abort -- Undefer_Abort -- Poll_Base_Priority_Change +-- Do_Pending_Action with System.Tasking.Queuing; -- used for Enqueue @@ -972,8 +973,20 @@ package body System.Tasking.Rendezvous is pragma Assert (Self_Id.Pending_ATC_Level = 0); pragma Assert (Self_Id.Awake_Count = 0); - -- Trust that it is OK to fall through. - null; + STPO.Unlock (Self_Id); + + if Single_Lock then + Unlock_RTS; + end if; + + Index := Self_Id.Chosen_Index; + Initialization.Undefer_Abort_Nestable (Self_Id); + + if Self_Id.Pending_Action then + Initialization.Do_Pending_Action (Self_Id); + end if; + + return; else -- Self_Id.Common.Call and Self_Id.Chosen_Index |