From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8a68738f40c40821,start X-Google-Attributes: gid103376,public From: Dale Stanbrough Subject: Recursive Protected types getting deadlocked! (longish) Date: 1997/09/07 Message-ID: <5uu4mr$6fs$1@goanna.cs.rmit.edu.au>#1/1 X-Deja-AN: 270457834 Distribution: world X-XXMessage-ID: Organization: Royal Melbourne Institute of Technology Newsgroups: comp.lang.ada Date: 1997-09-07T00:00:00+00:00 List-Id: I've written a small semaphore that records the task id of the owner, allowing recusive lock taking (i'm looking at how Java tasking works). The following code seems to deadlock however. It seems that when a 2nd task is woken up on the Queued entry, it does so in the context of the first Task (or so the Image function tells me...). This to me seems very strange. Is it likely to be an error in Gnat, or is it a misunderstanding on my part as to how this all works... Dale ----------------------------- with semaphores; use semaphores; with ada.task_identification; use ada.task_identification; procedure main2 is a : recursive_semaphore; task type wow; task body wow is begin A.Seize ; delay 1.0; A.Seize ; delay 1.0; A.release; delay 1.0; A.release; end; task_1 : wow; task_2 : wow; begin null; end; ------------------------- with Ada.Task_Identification; use Ada.Task_Identification; package Semaphores is protected type Recursive_Semaphore is entry Seize; procedure Release; private entry Queue; Lock_Holder : Task_Id; Held : Natural := 0; end Recursive_Semaphore; end Semaphores; -------- with text_io; use text_io; package body Semaphores is protected body Recursive_Semaphore is ----------- -- Seize -- ----------- entry Seize when True is begin Put_Line ("Seize called by ... " & Image (Current_Task)); put_line (" owner is " & Image (Lock_Holder)); if Held /= 0 then -- am i requesting it again? -- If so then increment the count so we know when -- to release it if Lock_Holder = Current_Task then Put_LIne ("Lock being grabbed by " & Image (Current_Task)); Held := Held + 1; Put_LIne ("held is now " & Held'img); else Put_Line ( Image (Current_Task) & " requeueing"); requeue Queue; end if; else Put_Line (Image (Current_Task) & " grabbing lock"); Held := 1; Lock_Holder := Current_Task; end if; end Seize; ------------- -- Release -- ------------- procedure Release is begin Put_Line ("Release called by " & Image (Current_Task)); if Held = 0 then -- someone tried to release it when it wasn't held! raise Tasking_Error; elsif Current_Task /= Lock_Holder then -- held, but not by me! raise Tasking_Error; else Held := Held - 1; Put_Line (" held is now " & Held'img); end if; end Release; ----------- -- Queue -- ----------- -- Queued task manages to get the lock! entry Queue when Held = 0 is begin Put_Line (Image (Current_Task) & " Queue, getting lock"); Held := 1; Lock_Holder := Current_Task; put_Line ("image is ...." & Image (Current_Task)); end Queue; end Recursive_Semaphore; end Semaphores;