comp.lang.ada
 help / color / mirror / Atom feed
From: Colin_Paul_Gloster@ACM.org (Colin Paul Gloster)
Subject: Re: Infinite loop detected in Ada exception manager
Date: 04 Oct 2002 13:05:03 GMT
Date: 2002-10-04T13:05:03+00:00	[thread overview]
Message-ID: <slrnapr4fv.2r0.Colin_Paul_Gloster@camac.dcu.ie> (raw)
In-Reply-To: f78e018a.0210040440.4b33cbc8@posting.google.com

In article <f78e018a.0210040440.4b33cbc8@posting.google.com>, 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.



  reply	other threads:[~2002-10-04 13:05 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-04 12:40 Infinite loop detected in Ada exception manager Foggy
2002-10-04 13:05 ` Colin Paul Gloster [this message]
2002-10-04 18:52 ` Stephen Leake
2002-10-05 14:11   ` Robert A Duff
2002-10-07 11:43     ` Peter Amey
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox