one word syncronize once more

2007-06-14 Thread Dmytro Fedonin
Hi all, I've got some response which shows that I was not clear enough in my previous post. Fullproof solution would be: Index: server/mpm/worker/worker.c === --- server/mpm/worker/worker.c (revision 545597) +++ server/mpm/worker

one word syncronize

2007-06-14 Thread Dmytro Fedonin
Hi all, Looking through 'server/mpm/worker/worker.c' I have found such a combination of TODO/FIXME comments: 1) /* TODO: requests_this_child should be synchronized - aaron */ if (requests_this_child <= 0) { 2) requests_this_child--; /* FIXME: should be synchronized - aaron */ And I can not see

keepalive connection broken

2007-06-12 Thread Dmytro Fedonin - Sun Microsystems
Hi, I have researched a problem with broken keepalive connections which is similar to bug# 41109. And I have found that in worker.c function 'int ap_graceful_stop_signalled(void)' returns listener_may_exit. Basically all the code is like this: int ap_graceful_stop_signalled(void) /**/ {

[PATCH]: prefork Bug# 17792 MaxClients invalid prior to ServerLimit

2007-06-06 Thread Dmytro Fedonin - Sun Microsystems
The directives: MaxClients 512 ServerLimit512 in that order results in WARNING: MaxClients of 512 exceeds ServerLimit value of 256 servers, lowering MaxClients to 256. To increase, please see the ServerLimit directive. Reversing the directives fixes the problem. I h