summaryrefslogtreecommitdiff
path: root/include/apr_general.h
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-02-24 23:07:30 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-02-24 23:07:30 +0000
commit7ad53d10106d0190a367d22c99cb8d75f11558df (patch)
tree660707f7cd4bac5447df50e4479bf61e6b7ec9fd /include/apr_general.h
parentb404e8a22008cdb77e8da26c96082dbfcb4fbaed (diff)
downloadlibapr-7ad53d10106d0190a367d22c99cb8d75f11558df.tar.gz
MAXIMUM_WAIT_OBJECTS has no basis in APR, and is defined for Win32 within
WinNT.h - and should never be examined outside of the Win32 code (this is confirmed for Apache, it's only referenced in util_win32.c and mpm_winnt.c). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64376 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_general.h')
-rw-r--r--include/apr_general.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/apr_general.h b/include/apr_general.h
index cabdcb951..99b6666cb 100644
--- a/include/apr_general.h
+++ b/include/apr_general.h
@@ -85,18 +85,6 @@ extern "C" {
#define TRUE (!FALSE)
#endif
-/**
- * The Win32 call WaitForMultipleObjects will only allow you to wait for
- * a maximum of MAXIMUM_WAIT_OBJECTS (current 64). Since the threading
- * model in the multithreaded version of apache wants to use this call,
- * we are restricted to a maximum of 64 threads.
- * @see wait_for_many_objects for a way to increase this size
- */
-
-#ifndef MAXIMUM_WAIT_OBJECTS
-#define MAXIMUM_WAIT_OBJECTS 64
-#endif
-
/** a space */
#define APR_ASCII_BLANK '\040'
/** a carrige return */