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.3 required=5.0 tests=BAYES_00,FREEMAIL_FROM, REPLYTO_WITHOUT_TO_CC,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5a5384e97f617987,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-08-20 09:12:46 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!148.122.208.68!news2.oke.nextra.no!nextra.com!news1.oke.nextra.no.POSTED!not-for-mail Reply-To: "Frank" From: "Frank" Newsgroups: comp.lang.ada Subject: Compilation halts on GNAT 3-13p, RedHat6.2 Linux X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Message-ID: <8Fag7.2404$hc7.28970@news1.oke.nextra.no> NNTP-Posting-Host: 130.67.137.193 X-Complaints-To: news-abuse@nextra.no NNTP-Posting-Date: Mon, 20 Aug 2001 18:11:48 MET DST Organization: Nextra Public Access X-Trace: readme.online.no 998323908 130.67.137.193 Date: Mon, 20 Aug 2001 18:10:55 +0200 Xref: archiver1.google.com comp.lang.ada:12130 Date: 2001-08-20T18:10:55+02:00 List-Id: Hi! The following code causes my compilation to halt (possibly loop forever). It's beyond doubt that there are errors in the code, but the compilator doesn't output anything. My GNAT/gtk is recompiled with s-stratt.ad? for GLADE. Could there be someone that could try to compile this on a un-GLADE GNAT 3-13p installation, and give me the result? Please also note which parameters you succeded with . I have tried: gnatgcc -c -O2 pa_tennis_engine.adb and without options at all. Frank ---------------------------------------------------------------------------- ------------------------------------ package PA_TENNIS_ENGINE is pragma Remote_Call_Interface; type TYPE_GET_RACKET is access procedure (P_POS : out PA_POSITION.TYPE_POSITION); type TYPE_MOVE_MY_RACKET is access procedure (P_POS : in PA_POSITION.TYPE_POSITION); procedure REGISTER (P_REQUESTORS_MOVE_RACKET : out TYPE_MOVE_MY_RACKET; P_REQUESTORS_GET_RACKET : out TYPE_GET_RACKET; P_OPPONENTS_GET_RACKET : out TYPE_GET_RACKET); end PA_TENNIS_ENGINE; ---------------------------------------------------------------------------- ------------------------------------ with TEXT_IO; package body PA_TENNIS_ENGINE is procedure REGISTER (P_REQUESTORS_MOVE_RACKET : out TYPE_MOVE_MY_RACKET; P_REQUESTORS_GET_RACKET : out TYPE_GET_RACKET; P_OPPONENTS_GET_RACKET : out TYPE_GET_RACKET) is begin P_OPPONENTS_GET_RACKET := GET_L_RACKET'Access; end REGISTER; end PA_TENNIS_ENGINE;