summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-11-20 17:48:08 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-11-20 17:48:08 +0000
commit42a6708951f921b45de899fffb251f51b6c4e9cc (patch)
tree604be8ecda9bddafd5bc68bb055ef3841e6dc90a /misc
parent5a4ee769ff4b6676b99111d89543a3bf63f86d8e (diff)
downloadlibapr-42a6708951f921b45de899fffb251f51b6c4e9cc.tar.gz
Drop deprecated apr_proc_{...} functions with detailed CHANGES notes.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64779 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r--misc/unix/otherchild.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/misc/unix/otherchild.c b/misc/unix/otherchild.c
index bc0d17bf5..a930a75a1 100644
--- a/misc/unix/otherchild.c
+++ b/misc/unix/otherchild.c
@@ -257,28 +257,3 @@ APR_DECLARE(void) apr_proc_other_child_refresh_all(int reason)
}
#endif /* APR_HAS_OTHER_CHILD */
-
-
-/* XXX: deprecated for removal in 1.0
- * The checks behaved differently between win32 and unix, while
- * the old win32 code did a health check, the unix code called
- * other_child_check only at restart.
- */
-APR_DECLARE(void) apr_proc_other_child_check(void)
-{
-#ifdef WIN32
- apr_proc_other_child_refresh_all(APR_OC_REASON_RUNNING);
-#else
- apr_proc_other_child_refresh_all(APR_OC_REASON_RESTART);
-#endif
-}
-
-/* XXX: deprecated for removal in 1.0
- * This really didn't test any sort of read - it simply notified
- * the maintenance function that the process had died.
- */
-APR_DECLARE(apr_status_t) apr_proc_other_child_read(apr_proc_t *proc, int status)
-{
- return apr_proc_other_child_alert(proc, APR_OC_REASON_DEATH, status);
-}
-