summaryrefslogtreecommitdiff
path: root/include/mpm_common.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2009-03-27 15:18:50 +0000
committerJeff Trawick <trawick@apache.org>2009-03-27 15:18:50 +0000
commit94b0c83e4e75069ffe08b5c21af3576c725498a2 (patch)
tree73f5fd9bbda8e7c929a05914822fb8d819b7b000 /include/mpm_common.h
parent78aa2421a7500c5ef607ae525a4247ac67e6a008 (diff)
downloadhttpd-94b0c83e4e75069ffe08b5c21af3576c725498a2.tar.gz
change commentary to note MPM API changes: MPM_ macros to mpm_ hooks
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759172 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/mpm_common.h')
-rw-r--r--include/mpm_common.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h
index d2d68bde7a..a3cde481d7 100644
--- a/include/mpm_common.h
+++ b/include/mpm_common.h
@@ -86,9 +86,9 @@ extern "C" {
* @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 @@ void ap_reclaim_child_processes(int terminate);
/**
* 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