summaryrefslogtreecommitdiff
path: root/include/mpm_common.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2012-07-18 18:28:04 +0000
committerJeff Trawick <trawick@apache.org>2012-07-18 18:28:04 +0000
commit952186c9f5b5222595683fc4e909c562af8f0247 (patch)
treeffbfd2e4cab10162c19bdc3ef6319e083bccc69f /include/mpm_common.h
parent4e20b1eba549375a441a304fb592f233f2545bbb (diff)
downloadhttpd-952186c9f5b5222595683fc4e909c562af8f0247.tar.gz
avoid decls for some Unix-specific functions on Win32 too
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1363035 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/mpm_common.h')
-rw-r--r--include/mpm_common.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h
index 99b1945c96..0a98d7009e 100644
--- a/include/mpm_common.h
+++ b/include/mpm_common.h
@@ -89,7 +89,7 @@ extern "C" {
typedef void ap_reclaim_callback_fn_t(int childnum, pid_t pid,
ap_generation_t gen);
-#ifndef NETWARE
+#if (!defined(WIN32) && !defined(NETWARE)) || defined(DOXYGEN)
/**
* Make sure all child processes that have been spawned by the parent process
* have died. This includes process registered as "other_children".
@@ -164,7 +164,8 @@ AP_DECLARE(int) ap_process_child_status(apr_proc_t *pid, apr_exit_why_e why, int
AP_DECLARE(apr_status_t) ap_fatal_signal_setup(server_rec *s, apr_pool_t *in_pconf);
AP_DECLARE(apr_status_t) ap_fatal_signal_child_setup(server_rec *s);
-#endif /* !NETWARE */
+
+#endif /* (!WIN32 && !NETWARE) || DOXYGEN */
/**
* Pool cleanup for end-generation hook implementation