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, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b9c2b789d4571012 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-04 06:05:05 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!arclight.uoregon.edu!newsfeed.mathworks.com!btnet-peer0!btnet-peer!btnet!diablo.theplanet.net!news.indigo.ie!feeder.news.heanet.ie!193.1.198.47.MISMATCH!not-for-mail Newsgroups: comp.lang.ada From: Colin_Paul_Gloster@ACM.org (Colin Paul Gloster) Subject: Re: Infinite loop detected in Ada exception manager References: Reply-To: Colin_Paul_Gloster@ACM.org Message-ID: User-Agent: slrn/0.9.7.0 (SunOS) Organization: Dublin City University (DCU) Cache-Post-Path: ns2-ext.dcu.ie!unknown@camac.dcu.ie X-Cache: nntpcache 2.3.3 (see http://www.nntpcache.org/) Date: 04 Oct 2002 13:05:03 GMT NNTP-Posting-Date: 04 Oct 2002 13:05:03 GMT NNTP-Posting-Host: 136.206.1.1 X-Trace: 1033736703 reader.news.heanet.ie 175 [::ffff:136.206.1.1]:63771 Xref: archiver1.google.com comp.lang.ada:29512 Date: 2002-10-04T13:05:03+00:00 List-Id: In article , Foggy wrote: "Hello, when compiling, I get the following error message: ERROR: Infinite loop detected in Ada exception manager, EIP=005b1304 What is the cause of this error and what can I do to solve it? Any help is appreciated. ObjectAda 7.2.2, Windows2000 Server, 4-CPU Dell, 1 GB RAM" Hello. Check if you have something like loop --an unconditional loop --nothing in here to get out of the loop end loop; or while -84 < 6 loop --Minus 84 is always less than six. --nothing here to get out of the loop end loop; in an exception handler. An exception handler begins with exception and has when some_type_of_exception => following the exception reserved word.