Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-04 Thread Oz
Hi again, After lots of testing I can say: It helped. I do still not exactly know why forking failed, but it seems to be somehow related to the high number of processes. I also do not understand why this is a *fatal* error, since it could easily be handled by returning -1 (like in the PHP

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-04 Thread Mark Charette
Oz wrote: First I wanted to create a queue for tasks; instead of forking directly only a limited number of processes should be run from the queue, when one finishes another should start. But I decided not to do this, because the queue can easily grow to reach the memory limit. If the queue

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-04 Thread Richard Lynch
On Thu, May 4, 2006 3:45 pm, Oz wrote: After lots of testing I can say: It helped. I do still not exactly know why forking failed, but it seems to be somehow related to the high number of processes. I'm pretty confident that it is directly related to the high number of processes. Your

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-03 Thread Richard Lynch
On Tue, May 2, 2006 3:57 pm, Jochem Maas wrote: Richard Lynch wrote: I believe that if you installed my perror extension: http://l-i-e.com/perror/ heh cool - I saw your posts to internals regarding trying to write an extension, seems you got a result :-) Yeah. An intermediate result, but a

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-03 Thread Oz
Richard Lynch wrote: On Wed, May 3, 2006 12:51 am, Oz wrote: Richard Lynch wrote: On Tue, May 2, 2006 11:29 am, Oz wrote: My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-03 Thread Richard Lynch
On Wed, May 3, 2006 12:51 am, Oz wrote: Richard Lynch wrote: On Tue, May 2, 2006 11:29 am, Oz wrote: My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any

[PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-02 Thread Oz
Hi, My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any documentation for pcntl_fork(): Error 11? Does anybody know what causes pcntl_fork(): Error 11? (It's

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-02 Thread Robin Vickery
On 02/05/06, Oz [EMAIL PROTECTED] wrote: Hi, My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any documentation for pcntl_fork(): Error 11? Does anybody know

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-02 Thread Richard Lynch
On Tue, May 2, 2006 11:29 am, Oz wrote: My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any documentation for pcntl_fork(): Error 11? Does anybody know what

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-02 Thread Jochem Maas
Richard Lynch wrote: On Tue, May 2, 2006 11:29 am, Oz wrote: My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any documentation for pcntl_fork(): Error 11?

RE: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-02 Thread Jay Blanchard
[snip] My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any documentation for pcntl_fork(): Error 11? Does anybody know what causes pcntl_fork(): Error 11? (It's

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-02 Thread Oz
Jay Blanchard wrote: [snip] My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any documentation for pcntl_fork(): Error 11? Does anybody know what causes

Re: [PHP] What means Fatal error: pcntl_fork(): Error 11?

2006-05-02 Thread Oz
Richard Lynch wrote: On Tue, May 2, 2006 11:29 am, Oz wrote: My script dies with the following line (after a few hours running without other errors/warnings/notices): Fatal error: pcntl_fork(): Error 11 in /home/foo/bar.php on line 297 Is there any documentation for pcntl_fork(): Error 11?