summaryrefslogtreecommitdiffstats
path: root/include/ap_config.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-06-23 00:49:50 +0200
committerRyan Bloom <rbb@apache.org>2000-06-23 00:49:50 +0200
commit6878409552352002135731455494c302fd010ac9 (patch)
treeb76f1dcd6125ef87ce7a6c61e7dd097c84d7cbad /include/ap_config.h
parentCommit a few changes to the mpmt_pthread and dexter MPMs. These basically (diff)
downloadapache2-6878409552352002135731455494c302fd010ac9.tar.xz
apache2-6878409552352002135731455494c302fd010ac9.zip
Remove select checks from Apache config. These checks were used to define
ap_select in ap_config.h. The only file that used ap_select() was prefork.c. I have modified prefork.c to use select instead of ap_select. In the future, this should be modified to use ap_poll like the rest of the Unix MPMs. There are other MPMs that are continuing to use select, but this too should change in time. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85663 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_config.h')
-rw-r--r--include/ap_config.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/ap_config.h b/include/ap_config.h
index 8899cd1fbc..8943acf569 100644
--- a/include/ap_config.h
+++ b/include/ap_config.h
@@ -103,16 +103,6 @@
/* ap_ versions of ctype macros to make sure they deal with 8-bit chars */
#include "ap_ctype.h"
-/* XXX - This probably doesn't handle OS/2 */
-#ifdef SELECT_NEEDS_CAST
-#define ap_select(_a, _b, _c, _d, _e) \
- select((SELECT_TYPE_ARG1)(_a), (SELECT_TYPE_ARG234)(_b), \
- (SELECT_TYPE_ARG234)(_c), (SELECT_TYPE_ARG234)(_d), \
- (SELECT_TYPE_ARG5)(_e))
-#else
-#define ap_select(_a, _b, _c, _d, _e) select(_a, _b, _c, _d, _e)
-#endif
-
#ifdef SIGWAIT_TAKES_ONE_ARG
#define ap_sigwait(a,b) ((*(b)=sigwait((a)))<0?-1:0)
#else