You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/03/27 16:18:51 UTC

svn commit: r759172 - /httpd/httpd/trunk/include/mpm_common.h

Author: trawick
Date: Fri Mar 27 15:18:50 2009
New Revision: 759172

URL: http://svn.apache.org/viewvc?rev=759172&view=rev
Log:
change commentary to note MPM API changes: MPM_ macros to mpm_ hooks

Modified:
    httpd/httpd/trunk/include/mpm_common.h

Modified: httpd/httpd/trunk/include/mpm_common.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/mpm_common.h?rev=759172&r1=759171&r2=759172&view=diff
==============================================================================
--- httpd/httpd/trunk/include/mpm_common.h (original)
+++ httpd/httpd/trunk/include/mpm_common.h Fri Mar 27 15:18:50 2009
@@ -86,9 +86,9 @@
  * @param terminate Either 1 or 0.  If 1, send the child processes SIGTERM
  *        each time through the loop.  If 0, give the process time to die
  *        on its own before signalling it.
- * @tip This function requires that some macros are defined by the MPM: <pre>
- *  MPM_CHILD_PID -- Get the pid from the specified spot in the scoreboard
- *  MPM_NOTE_CHILD_KILLED -- Note the child died in the scoreboard
+ * @tip This function requires that some hooks are implemented by the MPM: <pre>
+ *  mpm_get_child_pid -- Get the pid from the specified spot in the scoreboard
+ *  mpm_note_child_killed -- Note the child died in the scoreboard
  * </pre>
  * @tip The MPM child processes which are reclaimed are those listed
  * in the scoreboard as well as those currently registered via
@@ -99,9 +99,9 @@
 /**
  * Catch any child processes that have been spawned by the parent process
  * which have exited. This includes processes registered as "other_children".
- * @tip This function requires that some macros are defined by the MPM: <pre>
- *  MPM_CHILD_PID -- Get the pid from the specified spot in the scoreboard
- *  MPM_NOTE_CHILD_KILLED -- Note the child died in the scoreboard
+ * @tip This function requires that some hooks are implemented by the MPM: <pre>
+ *  mpm_get_child_pid -- Get the pid from the specified spot in the scoreboard
+ *  mpm_note_child_killed -- Note the child died in the scoreboard
  * </pre>
  * @tip The MPM child processes which are relieved are those listed
  * in the scoreboard as well as those currently registered via