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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,d85d09502b1b268d,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!y10g2000prf.googlegroups.com!not-for-mail From: david levy Newsgroups: comp.lang.ada Subject: ATC problem Date: Tue, 15 Sep 2009 02:19:27 -0700 (PDT) Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: 129.78.64.100 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1253006367 21819 127.0.0.1 (15 Sep 2009 09:19:27 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 15 Sep 2009 09:19:27 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: y10g2000prf.googlegroups.com; posting-host=129.78.64.100; posting-account=LqZWBgkAAACAPax51QIVivTtv5FpGr-H User-Agent: G2/1.0 X-HTTP-Via: 1.0 www-cacheE.usyd.edu.au:8080 (squid/2.6.STABLE5) X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729),gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:8328 Date: 2009-09-15T02:19:27-07:00 List-Id: Hi Running on windows XP with GNAT GPL 2009 and the Asych Transfer of Control select statement does not appear to work as I thought it should. The code is SELECT DELAY Deadline; Put_Line("Overrun"); THEN ABORT Do_Stuff; END SELECT; If Do_Stuff overruns the deadline, the Overrun message is displayed, but only after the procedure Do_Stuff completes. Do_Stuff is not terminated when the deadline expires. I expected it would. Am I missing something here? Thanks, Dave