The upper limit for -c option of pgbench is now obtained from

(FD_SETSIZE - 10) rather than a hardwired number.
This commit is contained in:
Tatsuo Ishii 2007-08-25 09:21:14 +00:00
parent 52a0830c40
commit e4a52eca35
1 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.70 2007/08/22 23:03:27 tgl Exp $
* $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.71 2007/08/25 09:21:14 ishii Exp $
*
* pgbench: a simple benchmark program for PostgreSQL
* written by Tatsuo Ishii
@ -53,7 +53,12 @@ extern int optind;
/********************************************************************
* some configurable parameters */
#define MAXCLIENTS 1024 /* max number of clients allowed */
/* max number of clients allowed */
#ifdef FD_SETSIZE
#define MAXCLIENTS (FD_SETSIZE - 10)
#else
#define MAXCLIENTS 1024
#endif
int nclients = 1; /* default number of simulated clients */
int nxacts = 10; /* default number of transactions per clients */