]> granicus.if.org Git - apache/commitdiff
Get rid of old naming fluff... MPMs aren't
authorJim Jagielski <jim@apache.org>
Wed, 25 Apr 2001 13:07:43 +0000 (13:07 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 25 Apr 2001 13:07:43 +0000 (13:07 +0000)
'modules' anymore. Also, we aren't dependant on Pthreads per se

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88933 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/MPM.NAMING

index 2090692d44c5fe13b5381ce7a8ffbb9b686c5268..62b60a0328966733b05ab79a2cecb3f06b8cf778 100644 (file)
@@ -1,35 +1,13 @@
-For right now, the naming of the MPM methods follows
-the following example for the 'prefork' method.
-
-  1. The directory name under modules/mpm is the actual
-     name.
-
-       eg: modules/mpm/prefork
-
-  2. The internal module name must be that name, prepended with
-     mpm_ and suffixed with _module
-
-       eg: mpm_prefork_module
-
-  3. The Makefile.tmpl must create lib<name>.a
-
-       eg: libprefork.a
-
-Numbers 1 and 3 follow the normal rules (for example, modules/standard
-creates libstandard.a, etc...).
-
-The MPM_METHOD Rule will use the actual name (eg: prefork) to
-pick the correct method module to build.
 
 The following MPMs currently exist:
 
   prefork ....... Multi  Process Model with Preforking (Apache 1.3)
-  perchild ...... Multi  Process Model with Threading via Pthreads
+  perchild ...... Multi  Process Model with Threading.
                   Constant number of processes, variable number of threads
                   each child process can have a different uid/gid.  
-  threaded ...... Multi  Process Model with Threading via Pthreads
+  threaded ...... Multi  Process Model with Threading.
                   Variable number of processes, constant number of
-                  threads/child (= Apache/pthread)
+                  threads/child (= Apache/thread)
   spmt_os2 ...... Single Process Model with Threading on OS/2
   winnt ......... Single Process Model with Threading on Windows NT