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,f63c22a739f1e4e5 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!news4.google.com!news.glorb.com!news.cs.univ-paris8.fr!newsfeed.vmunix.org!peer-uk.news.demon.net!kibo.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: How did dynamic elaboration fix cyclic elaboration error??? Date: Fri, 07 Apr 2006 07:02:14 +0100 Organization: Pushface Message-ID: References: <1144364373.517170.92020@z34g2000cwc.googlegroups.com> NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1144389730 21036 62.49.19.209 (7 Apr 2006 06:02:10 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Fri, 7 Apr 2006 06:02:10 +0000 (UTC) Cancel-Lock: sha1:SfyceAKPvk4sYJQqK+CatBnnzMU= User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin) Xref: g2news1.google.com comp.lang.ada:3742 Date: 2006-04-07T07:02:14+01:00 List-Id: "stuart clark" writes: Bob Duff has answered this, a further point: > a. uatl_stim_response_device_interface with's > uatl_stim_response_message_routing > > b. uatl_stim_response_message_routing with's utal_function_task > > c. utal_function_task with's uatl_stim_response_device_interface. I suspect the problem may relate to a library-level task? GNAT doesn't know what you may have done to ensure that the task never calls the device_interface until elaboration is complete. A solution is often to use a task _type_ and not create the task _instance_ until elaboration is complete. I realise this may be awkward, especially with legacy code.