summaryrefslogtreecommitdiff
path: root/test/testpoll.c
diff options
context:
space:
mode:
authorBrian Pane <brianp@apache.org>2002-08-03 00:10:57 +0000
committerBrian Pane <brianp@apache.org>2002-08-03 00:10:57 +0000
commitffc3e8062aa153fd43f35336c37ec993e932ee4c (patch)
tree5b9dde8aa37bb38818b1d38daaedd52ad6112c13 /test/testpoll.c
parent8a4c15c05548e17a65911a6189a80939c4acf8a1 (diff)
downloadapr-ffc3e8062aa153fd43f35336c37ec993e932ee4c.tar.gz
On systems without poll, limit apr_pollset's capacity to
the number of descriptors that select can handle (this is why testpoll test #4 was failing on win32) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63779 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testpoll.c')
-rw-r--r--test/testpoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testpoll.c b/test/testpoll.c
index 8a74e62b3..0827777ec 100644
--- a/test/testpoll.c
+++ b/test/testpoll.c
@@ -141,7 +141,7 @@ static void recv_msg(apr_socket_t **sockarray, int which, apr_pool_t *p)
}
#define SMALL_NUM_SOCKETS 3
-#define LARGE_NUM_SOCKETS 100
+#define LARGE_NUM_SOCKETS 64
int main(void)
{