Loading CHANGES +2 −0 Original line number Diff line number Diff line Changes with Apache 2.0.16-dev *) Get MaxRequestsPerChild working with the Windows MPM. [Bill Stoddard] *) Make generic hooks to work, with mod_generic_hook_import/export experimental modules. [Ben Laurie, Will Rowe] Loading STATUS +1 −4 Original line number Diff line number Diff line APACHE 2.0 STATUS: -*-text-*- Last modified at [$Date: 2001/04/03 00:27:08 $] Last modified at [$Date: 2001/04/03 01:09:16 $] Release: Loading Loading @@ -28,9 +28,6 @@ RELEASE SHOWSTOPPERS: Status: patch brought forward from 1.3.14 WIN32 and OS2 need review [William Rowe, Brian Harvard] * Win32: Enable the Windows MPM to honor max_requests_per_child Status: FirstBill will fix this? * Win32: Get Apache working on Windows 95/98. The following work (at least) needs to be done: - winnt MPM: Fix 95/98 code paths in the winnt MPM. There is some NT Loading server/mpm/winnt/mpm_winnt.c +10 −0 Original line number Diff line number Diff line Loading @@ -671,6 +671,7 @@ static PCOMP_CONTEXT win9x_get_connection(PCOMP_CONTEXT context) static void winnt_accept(void *listen_socket) { static int num_completion_contexts = 0; static int requests_this_child = 0; PCOMP_CONTEXT pCompContext; DWORD BytesRead; SOCKET nlsd; Loading @@ -679,6 +680,9 @@ static void winnt_accept(void *listen_socket) nlsd = (SOCKET) listen_socket; while (!shutdown_in_progress) { if (ap_max_requests_per_child && (requests_this_child > ap_max_requests_per_child)) { break; } pCompContext = NULL; /* Grab a context off the queue */ apr_lock_acquire(qlock); Loading Loading @@ -778,6 +782,12 @@ static void winnt_accept(void *listen_socket) */ PostQueuedCompletionStatus(ThreadDispatchIOCP, 0, IOCP_CONNECTION_ACCEPTED, &pCompContext->Overlapped); requests_this_child++; } if (!shutdown_in_progress) { /* Yow, hit an irrecoverable error! Tell the child to die. */ SetEvent(exit_event); } } static PCOMP_CONTEXT winnt_get_connection(PCOMP_CONTEXT pCompContext) Loading Loading
CHANGES +2 −0 Original line number Diff line number Diff line Changes with Apache 2.0.16-dev *) Get MaxRequestsPerChild working with the Windows MPM. [Bill Stoddard] *) Make generic hooks to work, with mod_generic_hook_import/export experimental modules. [Ben Laurie, Will Rowe] Loading
STATUS +1 −4 Original line number Diff line number Diff line APACHE 2.0 STATUS: -*-text-*- Last modified at [$Date: 2001/04/03 00:27:08 $] Last modified at [$Date: 2001/04/03 01:09:16 $] Release: Loading Loading @@ -28,9 +28,6 @@ RELEASE SHOWSTOPPERS: Status: patch brought forward from 1.3.14 WIN32 and OS2 need review [William Rowe, Brian Harvard] * Win32: Enable the Windows MPM to honor max_requests_per_child Status: FirstBill will fix this? * Win32: Get Apache working on Windows 95/98. The following work (at least) needs to be done: - winnt MPM: Fix 95/98 code paths in the winnt MPM. There is some NT Loading
server/mpm/winnt/mpm_winnt.c +10 −0 Original line number Diff line number Diff line Loading @@ -671,6 +671,7 @@ static PCOMP_CONTEXT win9x_get_connection(PCOMP_CONTEXT context) static void winnt_accept(void *listen_socket) { static int num_completion_contexts = 0; static int requests_this_child = 0; PCOMP_CONTEXT pCompContext; DWORD BytesRead; SOCKET nlsd; Loading @@ -679,6 +680,9 @@ static void winnt_accept(void *listen_socket) nlsd = (SOCKET) listen_socket; while (!shutdown_in_progress) { if (ap_max_requests_per_child && (requests_this_child > ap_max_requests_per_child)) { break; } pCompContext = NULL; /* Grab a context off the queue */ apr_lock_acquire(qlock); Loading Loading @@ -778,6 +782,12 @@ static void winnt_accept(void *listen_socket) */ PostQueuedCompletionStatus(ThreadDispatchIOCP, 0, IOCP_CONNECTION_ACCEPTED, &pCompContext->Overlapped); requests_this_child++; } if (!shutdown_in_progress) { /* Yow, hit an irrecoverable error! Tell the child to die. */ SetEvent(exit_event); } } static PCOMP_CONTEXT winnt_get_connection(PCOMP_CONTEXT pCompContext) Loading