1. Cuaseway DOS Extender Error
------=_NextPart_000_0006_01BF2058.1D3533A0
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
In writing an application for Object Euphoria I got the following error:
CauseWay DOS Extender v3.14 Copyright 1992-96 Michael Devore.
All rights reserved.
Exception: 0E, Error code: 0004
EAX=3D906C7002 EBX=3D8362452C ECX=3D906C48A3 EDX=3D83638024 =
ESI=3D836391E8=20
EDI=3D8363D450 EBP=3D00000035 ESP=3D83623068 EIP=3D906C6F90 =
EFL=3D00010286=20
CS=3D018F-7CA13000 DS=3D0197-7CA13000 ES=3D0197-7CA13000=20
FS=3D0000-xxxxxxxx GS=3D019F-xxxxxxxx SS=3D0197-7CA13000=20
CR0=3D00000000 CR2=3D00000000 CR3=3D00000000 TR=3D0000
Info flags=3D00008018=20
$=20
I haven't the vaguest idea what it means. The error occurs in a rouitne =
in Object Euphoria, but only with this particular application--inserting =
a meaningless assignment before the offending instruction in OE cures =
the problem, but what's happening? Any help would be greatly =
appreciated.
--Mike Nelson
------=_NextPart_000_0006_01BF2058.1D3533A0
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>
<META content=3Dtext/html;charset=3Diso-8859-1 =
http-equiv=3DContent-Type>
<META content=3D'"MSHTML 4.72.3110.7"' name=3DGENERATOR>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT color=3D#000000 size=3D2>In writing an application for Object =
Euphoria I=20
got the following error:</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>CauseWay DOS Extender v3.14 =
Copyright 1992-96=20
Michael Devore.<BR>All rights reserved.</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>Exception: 0E, Error code: =
0004</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>EAX=3D906C7002 EBX=3D8362452C =
ECX=3D906C48A3=20
EDX=3D83638024 ESI=3D836391E8 <BR>EDI=3D8363D450 EBP=3D00000035 =
ESP=3D83623068=20
EIP=3D906C6F90 EFL=3D00010286 </FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>CS=3D018F-7CA13000 =
DS=3D0197-7CA13000=20
ES=3D0197-7CA13000 <BR>FS=3D0000-xxxxxxxx GS=3D019F-xxxxxxxx =
SS=3D0197-7CA13000=20
</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>CR0=3D00000000 CR2=3D00000000 =
CR3=3D00000000=20
TR=3D0000</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>Info flags=3D00008018 </FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>$ </FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>I haven't the vaguest idea what it =
means. =20
The error occurs in a rouitne in Object Euphoria, but only with this =
particular=20
application--inserting a meaningless assignment before the offending =
instruction=20
in OE cures the problem, but what's happening? Any help would be =
greatly=20
appreciated.</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>--Mike =
------=_NextPart_000_0006_01BF2058.1D3533A0--
2. Re: Cuaseway DOS Extender Error
I'm resending this using the Web interface to
the mailing list. My ISP's outbound mail is broken.
Another copy of this message will probably arrive later.
--------------------------------------------------------
Mike Nelson writes:
> In writing an application for Object Euphoria I got the
> following error:
> CauseWay DOS Extender v3.14 Copyright 1992-96
> Michael Devore.
> All rights reserved.
> Exception: 0E, Error code: 0004
Causeway error reports aren't very helpful.
If you are using poke() or mem_copy() or other
memory routines, you should test the program with
euphoria\include\safe.e copied to your current
directory and renamed as machine.e.
If you think you may be running out of memory
(infinite recursion or something) then there's
a bug (fixed in 2.2) that sometimes makes a
Causeway error appear instead of a more
polite "out of memory" message.
If none of the above then please send me the code
and I'll try to reproduce it here.
Thanks,
Rob Craig
Rapid Deployment Software
http://www.RapidEuphoria.com
3. Re: Cuaseway DOS Extender Error
Mike Nelson writes:
> In writing an application for Object Euphoria I got the
> following error:
> CauseWay DOS Extender v3.14 Copyright 1992-96
> Michael Devore.
> All rights reserved.
> Exception: 0E, Error code: 0004
Causeway error reports aren't very helpful.
If you are using poke() or mem_copy() or other
memory routines, you should test the program with
euphoria\include\safe.e copied to your current
directory and renamed as machine.e.
If you think you may be running out of memory
(infinite recursion or something) then there's
a bug (fixed in 2.2) that sometimes makes a
Causeway error appear instead of a more
polite "out of memory" message.
If none of the above then please send me the code
and I'll try to reproduce it here.
Thanks,
Rob Craig
Rapid Deployment Software
http://www.RapidEuphoria.com
4. Re: Cuaseway DOS Extender Error
- Posted by Robert Craig <rds at ATTCANADA.NET>
Oct 27, 1999
-
Last edited Oct 28, 1999
I sent this several hours ago, but I
don't think it got through, so I'm resending it.
---------------------------------------------------
Mike Nelson writes:
> In writing an application for Object Euphoria I got the
> following error:
> CauseWay DOS Extender v3.14 Copyright 1992-96
> Michael Devore.
> All rights reserved.
> Exception: 0E, Error code: 0004
Causeway error reports aren't very helpful.
If you are using poke() or mem_copy() or other
memory routines, you should test the program with
euphoria\include\safe.e copied to your current
directory and renamed as machine.e.
If you think you may be running out of memory
(infinite recursion or something) then there's
a bug (fixed in 2.2) that sometimes makes a
Causeway error appear instead of a more
polite "out of memory" message.
If none of the above then please send me the code
and I'll try to reproduce it here.
Thanks,
Rob Craig
Rapid Deployment Software
http://www.RapidEuphoria.com