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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,11f4880dfa9887f7,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-25 03:30:51 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!supernews.com!news.tele.dk!small.news.tele.dk!212.43.194.69!fr.clara.net!heighliner.fr.clara.net!teaser.fr!teleglobe.net!server-b.cs.interbusiness.it!news.finmeccanica.it!not-for-mail From: "Paolo Argenton" Newsgroups: comp.lang.ada Subject: asynchronos select question Date: Thu, 25 Oct 2001 11:54:31 +0200 Organization: Finmeccanica Message-ID: <9r8nmb$l2j$1@e3k.asi.ansaldo.it> NNTP-Posting-Host: 172.19.26.120 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Xref: archiver1.google.com comp.lang.ada:15169 Date: 2001-10-25T11:54:31+02:00 List-Id: Just learning Ada in my spare time, so please be patient.. ;-) I have the following question, regarding the select then abort usage: if I try the following snippet, inspired by the AARM example select delay 5.0; put_line (" timeout" ); then abort proc_with_blocking_io; -- i.e. wait for a byte to come from a serial line for istance end select; it never triggers the timeout part and waits forever, at least on NT+gnat 3.13. Is it correct ? incorrect ? my misunderstanding ? compiler/OS dependant code ? thanks in advance Paolo Argenton paoloa1@yahoo.com