summaryrefslogtreecommitdiff
path: root/include/ap_mpm.h
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-07-02 00:33:46 +0000
committerYann Ylavic <ylavic@apache.org>2020-07-02 00:33:46 +0000
commit6f6cc1d2be697c89a0592cb9e447c3d03a5a9dad (patch)
treeaa03850b4ca1cdbd2a0c929bcf05ae2eb60f8933 /include/ap_mpm.h
parent9e1b133867d80fd8cebeae592855b5211de915e9 (diff)
downloadhttpd-6f6cc1d2be697c89a0592cb9e447c3d03a5a9dad.tar.gz
mpm_common: remove ap_mpm_unregister_poll_callback().
It's now called automatically by mpm_event and anyway can't be called safely outside the MPM code without racing. MAJOR bump. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879422 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mpm.h')
-rw-r--r--include/ap_mpm.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/ap_mpm.h b/include/ap_mpm.h
index 633ea1faac..f446587836 100644
--- a/include/ap_mpm.h
+++ b/include/ap_mpm.h
@@ -242,16 +242,6 @@ AP_DECLARE(apr_status_t) ap_mpm_register_poll_callback_timeout(
ap_mpm_callback_fn_t *tofn, void *baton, apr_time_t timeout);
-/**
-* Unregister a previously registered callback.
-* @param pfds Array of apr_pollfd_t
-* @return APR_SUCCESS if all sockets/pipes could be removed from the pollset,
-* APR_ENOTIMPL if no asynch support, or an apr_pollset_remove error.
-* @remark This function triggers the cleanup registered on the pool p during
-* callback registration.
-*/
-AP_DECLARE(apr_status_t) ap_mpm_unregister_poll_callback(apr_array_header_t *pfds);
-
typedef enum mpm_child_status {
MPM_CHILD_STARTED,
MPM_CHILD_EXITED,