summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2007-06-13 16:23:19 +0000
committerJim Jagielski <jim@apache.org>2007-06-13 16:23:19 +0000
commit91f25252ce2b5311fa76f7c6cd299f745656e0b6 (patch)
tree459cad01fd95d9dfe7a260c0e3dbf9df2e5139c6 /include
parentebf474ed028be5f363f872d23960e4abb1a27225 (diff)
downloadhttpd-2.2-pid-table.tar.gz
Backport of PID table code from trunk to 2.2...httpd-2.2-pid-table
Create a branch for this until we test enough to fold into 2.2 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpd-2.2-pid-table@546948 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/mpm_common.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h
index bc4480a792..27b317882f 100644
--- a/include/mpm_common.h
+++ b/include/mpm_common.h
@@ -350,6 +350,14 @@ extern const char *ap_mpm_set_exception_hook(cmd_parms *cmd, void *dummy,
const char *arg);
#endif
+/*
+ * The parent process pid table
+ */
+extern apr_table_t *ap_pid_table;
+int ap_in_pid_table(pid_t pid);
+void ap_set_pid_table(pid_t pid);
+void ap_unset_pid_table(pid_t pid);
+
AP_DECLARE_HOOK(int,monitor,(apr_pool_t *p))
#ifdef __cplusplus