Subject
Re: [EMAIL PROTECTED] How Apache manages all its children - Add More Info
[EMAIL PROTECTED] wrote:>> I wonder if anybody has tried Windows prefork for Apache 2.2.2.The issue is the lack-of-fork in the Win32 API. It's supported at the ntdlllayer, meaning that all the win32
[EMAIL PROTECTED] wrote:
>
> I wonder if anybody has tried Windows prefork for Apache 2.2.2.
The issue is the lack-of-fork in the Win32 API. It's supported at the ntdll
layer, meaning that all the win32-ism's such as their thread-local storage
model don't survive the fork() at all. For pure N
Hi,
In windows Apache creates 2 processes.
Prefork is not supported on wondows.
Process 1 has minimum of three
threads as below.
worker_main ( actall thread which does
the work coded in modules. More threads are spawned accoding to the configuration
on httpd.conf )
winnt_accept
and __tmainCRTS