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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,743bde81fe3a3a6,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!news.belwue.de!LF.net!news.enyo.de!not-for-mail From: Florian Weimer Newsgroups: comp.lang.ada Subject: [GNAT 3.15p] Unexpected exception in Protected_Entry_Call Date: Mon, 13 Mar 2006 15:12:01 +0100 Message-ID: <878xrecu32.fsf@mid.deneb.enyo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: albireo.enyo.de 1142259124 21076 212.9.189.177 (13 Mar 2006 14:12:04 GMT) X-Complaints-To: Cancel-Lock: sha1:ve/Dw70mu7+b7L4fm5QXY7/Kv10= Xref: g2news1.google.com comp.lang.ada:3337 Date: 2006-03-13T15:12:01+01:00 List-Id: I'm seeing a strange exception raised by System.Tasking.Protected_Objects.Operations.Protected_Entry_Call, in this code: if Ceiling_Violation then -- Failed ceiling check Initialization.Undefer_Abort (Self_ID); raise Program_Error; end if; The exception is apparently triggered by a simple conditional entry call which is cancelled. So far, I've only seen this issue on SMP systems (more precisely: Linux/i386 and Linux/AMD64 (with 32-bit userland) with NPTL). The strange thing is that I don't use any fancy priorities, so I'm surprised that the run-time system detects a ceiling violation.