svn commit: r1935408 - in httpd/httpd/branches/2.4.x/docs/manual: . mod

[email protected] Tue, 16 Jun 2026 14:23:25 -0000
Newsgroups gmane.comp.apache.cvs
Message-ID <178161980530.2422221.3847480328165622524@svn03-he-fi>
Author: rbowen
Date: Tue Jun 16 14:23:25 2026
New Revision: 1935408

Log:
Link to MPM doc; Add LoadModule example for MPMs.

Modified:
   httpd/httpd/branches/2.4.x/docs/manual/mod/event.xml
   httpd/httpd/branches/2.4.x/docs/manual/mod/mpm_netware.xml
   httpd/httpd/branches/2.4.x/docs/manual/mod/mpm_winnt.xml
   httpd/httpd/branches/2.4.x/docs/manual/mod/mpmt_os2.xml
   httpd/httpd/branches/2.4.x/docs/manual/mod/prefork.xml
   httpd/httpd/branches/2.4.x/docs/manual/mod/worker.xml
   httpd/httpd/branches/2.4.x/docs/manual/mpm.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/event.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/event.xml	Tue Jun 16 14:22:50 2026	(r1935407)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/event.xml	Tue Jun 16 14:23:25 2026	(r1935408)
@@ -38,8 +38,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/branches/2.4.x/docs/manual/mod/mpm_netware.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mpm_netware.xml	Tue Jun 16 14:22:50 2026	(r1935407)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mpm_netware.xml	Tue Jun 16 14:23:25 2026	(r1935408)
@@ -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/branches/2.4.x/docs/manual/mod/mpm_winnt.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mpm_winnt.xml	Tue Jun 16 14:22:50 2026	(r1935407)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mpm_winnt.xml	Tue Jun 16 14:23:25 2026	(r1935408)
@@ -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/branches/2.4.x/docs/manual/mod/mpmt_os2.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mpmt_os2.xml	Tue Jun 16 14:22:50 2026	(r1935407)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mpmt_os2.xml	Tue Jun 16 14:23:25 2026	(r1935408)
@@ -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/branches/2.4.x/docs/manual/mod/prefork.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/prefork.xml	Tue Jun 16 14:22:50 2026	(r1935407)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/prefork.xml	Tue Jun 16 14:23:25 2026	(r1935408)
@@ -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/branches/2.4.x/docs/manual/mod/worker.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/worker.xml	Tue Jun 16 14:22:50 2026	(r1935407)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/worker.xml	Tue Jun 16 14:23:25 2026	(r1935408)
@@ -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/branches/2.4.x/docs/manual/mpm.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mpm.xml	Tue Jun 16 14:22:50 2026	(r1935407)
+++ httpd/httpd/branches/2.4.x/docs/manual/mpm.xml	Tue Jun 16 14:23:25 2026	(r1935408)
@@ -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>