|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-04-09 00:16 UTC] s dot masugata at digicom dot dnp dot co dot jp
[2004-04-09 00:19 UTC] gschlossnagle@php.net
[2004-04-09 00:25 UTC] s dot masugata at digicom dot dnp dot co dot jp
[2004-04-09 00:42 UTC] gschlossnagle@php.net
[2004-04-09 00:52 UTC] s dot masugata at digicom dot dnp dot co dot jp
[2004-04-09 04:37 UTC] test0625a at mbs dot sphere dot ne dot jp
[2004-04-09 05:31 UTC] s dot masugata at digicom dot dnp dot co dot jp
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 08:00:01 2025 UTC |
Description: ------------ When generation of a child process is repeated repeatedly and more than this and a child process cannot be generated, a parent process will die. It seems that a snapshot isn't changed. --- php-4.3.5/ext/pcntl/pcntl.c Fri Jan 23 16:02:54 2004 +++ ./pcntl.c Thu Apr 8 16:17:39 2004 @@ -189,7 +189,7 @@ id = fork(); if (id == -1) { - php_error(E_ERROR, "Error %d in %s", errno, get_active_function_name(TSRMLS_C)); + php_error(E_NOTICE, "Error %d in %s", errno, get_active_function_name(TSRMLS_C)); } RETURN_LONG((long) id);