diff options
author | Joshua Slive <slive@apache.org> | 2002-03-05 23:15:43 +0000 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2002-03-05 23:15:43 +0000 |
commit | 32ba32e077e1c7c243cacc91f4fbbe42a600f7d4 (patch) | |
tree | 20cf82114a0fce7b0ced4d95e70f608640e77b30 /docs/manual/mod | |
parent | cd856b3d0a0aa3ca7a34ca391cd167a43582e94e (diff) | |
download | httpd-32ba32e077e1c7c243cacc91f4fbbe42a600f7d4.tar.gz |
Add mpm_winnt conversion and fix a typo in mpm_common.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93722 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod')
-rw-r--r-- | docs/manual/mod/mpm_common.xml | 2 | ||||
-rw-r--r-- | docs/manual/mod/mpm_winnt.xml | 34 |
2 files changed, 35 insertions, 1 deletions
diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index 3e3e4b7a5f..d147998d2a 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -247,7 +247,7 @@ to serve requests</description> </directivesynopsis> <directivesynopsis> -<name>MaxRequestPerChild</name> +<name>MaxRequestsPerChild</name> <description>Limit on the number of requests that an individual child server will handle during its life</description> <syntax>MaxRequestsPerChild <em>number</em></syntax> diff --git a/docs/manual/mod/mpm_winnt.xml b/docs/manual/mod/mpm_winnt.xml new file mode 100644 index 0000000000..ca51b38063 --- /dev/null +++ b/docs/manual/mod/mpm_winnt.xml @@ -0,0 +1,34 @@ +<?xml version="1.0"?> +<?xml-stylesheet type="text/xsl" href="../style/manual.xsl"?> +<modulesynopsis> + +<name>mpm_winnt</name> +<description>This Multi-Processing Module is optimized for Windows + NT.</description> +<status>MPM</status> +<sourcefile>mpm_winnt.c</sourcefile> +<identifier>mpm_winnt_module</identifier> + +<summary> + <p>This Multi-Processing Module (MPM) is the default for the + Windows NT operating systems. It uses a single control process + which launches a single child process which in turn creates + threads to handle requests</p> +</summary> + +<directivesynopsis location="mpm_common"><name>CoreDumpDirectory</name> +</directivesynopsis> +<directivesynopsis location="mpm_common"><name>PidFile</name> +</directivesynopsis> +<directivesynopsis location="mpm_common"><name>Listen</name> +</directivesynopsis> +<directivesynopsis location="mpm_common"><name>ListenBacklog</name> +</directivesynopsis> +<directivesynopsis location="mpm_common"><name>MaxRequestsPerChild</name> +</directivesynopsis> +<directivesynopsis location="mpm_common"><name>SendBufferSize</name> +</directivesynopsis> +<directivesynopsis location="mpm_common"><name>ThreadsPerChild</name> +</directivesynopsis> + +</modulesynopsis>
\ No newline at end of file |