OSDN Git Service

Increase FD_SETSIZE on Win32 to allow for more than 54 clients.
authorMagnus Hagander <magnus@hagander.net>
Mon, 22 Oct 2007 10:40:47 +0000 (10:40 +0000)
committerMagnus Hagander <magnus@hagander.net>
Mon, 22 Oct 2007 10:40:47 +0000 (10:40 +0000)
Per Greg Stark & Dave Page

contrib/pgbench/pgbench.c

index 754d8fd..a5e57ce 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.72 2007/09/27 20:39:43 tgl Exp $
+ * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.73 2007/10/22 10:40:47 mha Exp $
  *
  * pgbench: a simple benchmark program for PostgreSQL
  * written by Tatsuo Ishii
@@ -24,6 +24,8 @@
 #include <ctype.h>
 
 #ifdef WIN32
+#undef FD_SETSIZE
+#define FD_SETSIZE 1024
 #include <win32.h>
 #else
 #include <sys/time.h>