Re: BREAKing into Euphoria
- Posted by Andy Drummond <andy at kestrelt?l?.com> Sep 11, 2007
- 2153 views
Robert Craig wrote: > > > Have you tried: > with trace > trace(3) > > It will slow your program down, > but you'll capture the last 500 statements > in a file, ctrace.out > > After forcibly killing it, you might be able to > see in ctrace.out what it was doing when it > became non-responsive. > > Regards, > Rob Craig > Rapid Deployment Software > <a href="http://www.RapidEuphoria.com">http://www.RapidEuphoria.com</a> Ah, so trace(3)closes the ctrace.out file after each write, does it? That will do as well, I think, Rob, so thanks very much for the post. I will give it a try. A well known law says that I won't get the code to lock up with trace(3) running, of course! I shall have to add "with trace" to every include file, I guess..... Thanks, Andy