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,f19adc1c782ed4a3,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews1.google.com!not-for-mail From: my_spam@bluewin.ch (Thomas Aho) Newsgroups: comp.lang.ada Subject: gnat 3.15p with kernel 2.6 / SuSE 9.1 Date: 1 Oct 2004 03:29:31 -0700 Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: 195.65.112.42 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1096626571 18594 127.0.0.1 (1 Oct 2004 10:29:31 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 1 Oct 2004 10:29:31 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:4498 Date: 2004-10-01T03:29:31-07:00 List-Id: I have a problem with gnat 3.14p hanging on a SuSE 9.1 system (kernel 2.6). As soon as there are tasks involved, the program hangs, as soon as the task is being activated. An example: with Text_Io; procedure Amain is task type Tt is entry Start; entry Stop; end; task body Tt is Exit_Flag : Boolean := False; begin accept Start; while not Exit_Flag Loop Text_Io.Put_Line("hello"); select accept Stop; Exit_Flag := True; or delay 1.0; end select; end loop; end; begin Text_Io.Put_Line("start"); declare T1 : Tt; begin t1.Start; delay 5.0; T1.Stop; end; end Amain; This program will only report "start", and then nothing more. I have made sure that the gcc that is found is 2.8.1 (which is the backend for gnat 3.15), so there is no gcc2-gcc3 conflict. Does anyone have experinced similar problems? /Thomas Aho