summaryrefslogtreecommitdiff
path: root/include/ap_mpm.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-12-19 20:44:24 +0000
committerRyan Bloom <rbb@apache.org>2000-12-19 20:44:24 +0000
commit98a20231fc34db0ab2be2faba5a4ba913ac00665 (patch)
tree9bb7c90475e70eaf6d563952dc354dfb2b2fd212 /include/ap_mpm.h
parent6fbd866c3320dc832f9ac7217cfa575d4e56564f (diff)
downloadhttpd-98a20231fc34db0ab2be2faba5a4ba913ac00665.tar.gz
ap_start_shutdown is not used by anybody outside of the MPMs, so we don't
need to put it in the ap_mpm.h header file. This also makes all of the instances of ap_start_shutdown static. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87428 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mpm.h')
-rw-r--r--include/ap_mpm.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/ap_mpm.h b/include/ap_mpm.h
index 491eb6370f..1e1914b21c 100644
--- a/include/ap_mpm.h
+++ b/include/ap_mpm.h
@@ -126,22 +126,6 @@ AP_DECLARE(int) ap_mpm_run(apr_pool_t *pconf, apr_pool_t *plog, server_rec *serv
AP_DECLARE(int) ap_graceful_stop_signalled(void);
/**
- * ap_start_shutdown() and ap_start_restart() is a function to initiate
- * shutdown without relying on signals.
- *
- * This should only be called from the parent process itself, since the
- * parent process will use the shutdown_pending and restart_pending variables
- * to determine whether to shutdown or restart. The child process should
- * call signal_parent() directly to tell the parent to die -- this will
- * cause neither of those variable to be set, which the parent will
- * assume means something serious is wrong (which it will be, for the
- * child to force an exit) and so do an exit anyway.
- * @deffunc void ap_start_shutdown(void)
- */
-
-AP_DECLARE(void) ap_start_shutdown(void);
-
-/**
* Spawn a process with privileges that another module has requested
* @param r The request_rec of the current request
* @param newproc The resulting process handle.