hi,
what is the correct behavior, if apache killing idle child processes
in an environment where:
apache prefork_mpm
php loaded as apache module
php loads a module with extension=xy.so
should be the msshutdown function called for each httpd child or only
once if the whole httpd server shuts down?
thanks for clarifying this.
Attila Soki
hi,
what is the correct behavior, if apache killing idle child processes
in an environment where:
apache prefork_mpm
php loaded as apache module
php loads a module with extension=xy.soshould be the msshutdown function called for each httpd child or only
once if the whole httpd server shuts down?
Since Apache children are separate processes, they have their own shutdown
sequences and MSHUTDOWN is called for each child (which is pretty easy to check, btw).
--
Wbr,
Antony Dovgal
should be the msshutdown function called for each httpd child or only
once if the whole httpd server shuts down?Since Apache children are separate processes, they have their own shutdown
sequences and MSHUTDOWN is called for each child (which is pretty easy to check, btw).
thanks for your answer.
i asked this, because i trying get a rid of a bug. if apache 2.2.8,
php5.2.5 and php-java-bridge used thogether the apache childs begin to
freeze.
the apache-team say this is an php bug, javabridge team says this is an
php or apache bug.
please look these threads:
"internal dummy connections blocking httpd"
https://issues.apache.org/bugzilla/show_bug.cgi?id=43966
"php-java-bridge bug and maybe a working patch"
http://sourceforge.net/mailarchive/forum.php?thread_name=1205435208.2906.45.camel%40kukac&forum_name=php-java-bridge-users
so, where is the bug?
thanks.
Best regards,
Attila Soki