svn commit: r1935407 - in httpd/httpd/trunk/docs/manual: . mod
[email protected] Tue, 16 Jun 2026 14:22:50 -0000
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <178161977058.2419925.16811745153427611063@svn03-he-fi> |
Author: rbowen
Date: Tue Jun 16 14:22:50 2026
New Revision: 1935407
Log:
Link to MPM doc; Add LoadModule for each MPM.
Modified:
httpd/httpd/trunk/docs/manual/mod/event.xml
httpd/httpd/trunk/docs/manual/mod/motorz.xml
httpd/httpd/trunk/docs/manual/mod/mpm_netware.xml
httpd/httpd/trunk/docs/manual/mod/mpm_winnt.xml
httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml
httpd/httpd/trunk/docs/manual/mod/prefork.xml
httpd/httpd/trunk/docs/manual/mod/worker.xml
httpd/httpd/trunk/docs/manual/mpm.xml
Modified: httpd/httpd/trunk/docs/manual/mod/event.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/event.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mod/event.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -39,8 +39,16 @@ of consuming threads only for connection
<code>--with-mpm=event</code> to the <program>configure</program>
script's arguments when building the <program>httpd</program>.</p>
+
+ <p>When built as a DSO module, it can be loaded with:</p>
+
+ <highlight language="config">
+LoadModule mpm_event_module modules/mod_mpm_event.so
+ </highlight>
+
</summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
<seealso><a href="worker.html">The worker MPM</a></seealso>
<section id="event-worker-relationship"><title>Relationship with the Worker MPM</title>
Modified: httpd/httpd/trunk/docs/manual/mod/motorz.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/motorz.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mod/motorz.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -49,8 +49,16 @@ built on the APR pollset and thread pool
it as a loadable module with
<code>--enable-mpms-shared=motorz</code>.</p>
+
+ <p>When built as a DSO module, it can be loaded with:</p>
+
+ <highlight language="config">
+LoadModule mpm_motorz_module modules/mod_mpm_motorz.so
+ </highlight>
+
</summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
<seealso><a href="event.html">The event MPM</a></seealso>
<seealso><a href="worker.html">The worker MPM</a></seealso>
<seealso><a href="prefork.html">The prefork MPM</a></seealso>
Modified: httpd/httpd/trunk/docs/manual/mod/mpm_netware.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mpm_netware.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mod/mpm_netware.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -60,7 +60,9 @@
ones and launching new ones. On the NetWare OS it is highly
recommended that this directive remain set to 0. This allows worker
threads to continue servicing requests indefinitely.</p>
+
</summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
<seealso><a href="../bind.html">Setting which addresses and
ports Apache httpd uses</a>
</seealso>
Modified: httpd/httpd/trunk/docs/manual/mod/mpm_winnt.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mpm_winnt.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mod/mpm_winnt.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -95,8 +95,10 @@ AcceptFilter https none
documentation for details.)</li>
</ul>
+
</summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
<seealso><a href="../platform/windows.html">Using Apache HTTP Server on Microsoft Windows</a></seealso>
<directivesynopsis location="core"><name>AcceptFilter</name>
Modified: httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mod/mpmt_os2.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -43,7 +43,9 @@
maintenance thread so that the number of idle threads is kept between
<directive module="mpm_common">MinSpareThreads</directive> and
<directive module="mpm_common">MaxSpareThreads</directive>.</p>
+
</summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
<seealso><a href="../bind.html">Setting which addresses and ports Apache
uses</a></seealso>
Modified: httpd/httpd/trunk/docs/manual/mod/prefork.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/prefork.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mod/prefork.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -43,7 +43,15 @@
to handle as many simultaneous requests as you expect to receive, but
small enough to assure that there is enough physical RAM for all
processes.</p>
+
+ <p>When built as a DSO module, it can be loaded with:</p>
+
+ <highlight language="config">
+LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+ </highlight>
+
</summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
<seealso><a href="../bind.html">Setting which addresses and ports Apache HTTP Server
uses</a></seealso>
Modified: httpd/httpd/trunk/docs/manual/mod/worker.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/worker.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mod/worker.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -42,7 +42,15 @@
<directive module="mpm_common">MaxRequestWorkers</directive>, which
controls the maximum total number of threads that may be
launched.</p>
+
+ <p>When built as a DSO module, it can be loaded with:</p>
+
+ <highlight language="config">
+LoadModule mpm_worker_module modules/mod_mpm_worker.so
+ </highlight>
+
</summary>
+<seealso><a href="../mpm.html">Multi-Processing Modules (MPMs)</a></seealso>
<seealso><a href="../bind.html">Setting which addresses and ports Apache HTTP Server uses</a></seealso>
<section id="how-it-works"><title>How it Works</title>
Modified: httpd/httpd/trunk/docs/manual/mpm.xml
==============================================================================
--- httpd/httpd/trunk/docs/manual/mpm.xml Tue Jun 16 14:11:49 2026 (r1935406)
+++ httpd/httpd/trunk/docs/manual/mpm.xml Tue Jun 16 14:22:50 2026 (r1935407)
@@ -140,7 +140,7 @@ two features.</p>
for the MPM instead of by rebuilding the server.</p>
<highlight language="config">
- LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+ LoadModule mpm_event_module modules/mod_mpm_event.so
</highlight>
<p>Attempting to <directive module="mod_so">LoadModule</directive>