Commit fa1092c1 authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Rename the mpmt_pthread module to threaded. This module has moved from

the old mpmt_pthread directory to the new threaded directory.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88199 13f79535-47bb-0310-9956-ffa450edef68
parent bff76c47
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
Changes with Apache 2.0.12-dev

  *) Rename mpmt_pthread to threaded.  This is more in line with the
     fact that mpmt_pthread shouldn't be using pthreads directly, and
     it is a smaller name that doesn't tie into anything.
     [Ryan Bloom]

  *) Rename the module structures so that the exported symbol matches
     the file name, and it is easier to automate the installation
     process (generating LoadModule directives from the module filenames).
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ MinSpareServers 5
MaxSpareServers 10
</IfModule>

<IfModule mpmt_pthread.c>
<IfModule threaded.c>
MaxClients       8
StartServers     1
MinSpareThreads  5
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ MaxRequestsPerChild 0
# MaxSpareThreads ...... maximum  number of worker threads which are kept spare
# ThreadsPerChild ...... constant number of worker threads in each server process
# MaxRequestsPerChild .. maximum  number of requests a server process serves
<IfModule mpmt_pthread.c>
<IfModule threaded.c>
StartServers         5
MaxClients           8
MinSpareThreads      5
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ directives</A>.
<DL>
<DT><A HREF="core.html">Core</A>
<DD>Core Apache features.
<DT><A HREF="mpmt_pthread.html">mpmt_pthread</A>
<DT><A HREF="threaded.html">threaded</A>
<DD>Multi-Processing Module with Threading via Pthreads; Variable number
of processes, constant number of threads/child
<DT><a href="mpm_winnt.html">mpm_winnt</a>
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ directives</A>.
<DL>
<DT><A HREF="core.html">Core</A>
<DD>Core Apache features.
<DT><A HREF="mpmt_pthread.html">mpmt_pthread</A>
<DT><A HREF="threaded.html">threaded</A>
<DD>Multi-Processing Module with Threading via Pthreads; Variable number
of processes, constant number of threads/child
<DT><a href="mpm_winnt.html">mpm_winnt</a>
Loading