Re: [PHP] suggestion: recursive calls

2003-09-05 Thread Ronald van Raaphorst
yeah, but my unix server is located at my providers place, and I can't get a core dump. Ronald "Robert Cummings" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > I've accidentally had infinite recursion at times. Under Linux if > configured, you can get a core dump which can be loa

Re: [PHP] suggestion: recursive calls

2003-09-05 Thread Ronald van Raaphorst
Yep, but then I expect a timeout error because my script is running more than say 20 seconds... Ronald "Marco Schuler" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] > Hi > > Am Don, 2003-09-04 um 12.40 schrieb Ronald van Raaphorst: > > I normally program in clarion (www.softveloci

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Robert Cummings
I've accidentally had infinite recursion at times. Under Linux if configured, you can get a core dump which can be loaded in GDB to see the stack. I usually know Its infinite recursion when GDB shows a backtrack in the 10s of thousands. Cheers, Rob. On Thu, 2003-09-04 at 06:04, Ronald van Raapho

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Jason Sheets
is a bit too hard and thats why they didn't bother :)... Andrew - Original Message - From: "Ronald van Raaphorst" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 04, 2003 11:40 AM Subject: Re: [PHP] suggestion: recursive calls I normally

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Andrew Brampton
rst" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 04, 2003 11:40 AM Subject: Re: [PHP] suggestion: recursive calls > I normally program in clarion (www.softvelocity.com) and an infinite > recursive call will cause a heap overflow... > > As I o

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Marco Schuler
Hi Am Don, 2003-09-04 um 12.40 schrieb Ronald van Raaphorst: > I normally program in clarion (www.softvelocity.com) and an infinite > recursive call will cause a heap overflow... > > As I only got a "This page cannot be displayed" page, an error must have > occurred, but it's not displayed... A

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Ronald van Raaphorst
I normally program in clarion (www.softvelocity.com) and an infinite recursive call will cause a heap overflow... As I only got a "This page cannot be displayed" page, an error must have occurred, but it's not displayed... At first I thought I had lost contact with the site, but then, after a lot

Re: [PHP] suggestion: recursive calls

2003-09-04 Thread Marek Kilimajer
I don't think it is even possible, if the recursive calls don't seem infinite to inteligent human being, how should a stupid computer program find out. Ronald van Raaphorst wrote: Hi all, Not a real bug, but a suggestion: It would be nice if inifite recursive calls would somehow give an error.