add ability to run gtk from newrelay.sh. Trying to run 50 instances

crashes the relay as ACKs take too long to come back.
This commit is contained in:
Andy2 2010-09-16 01:44:54 -07:00
parent 06c8fdc67f
commit 0d7165f881
2 changed files with 7 additions and 4 deletions

View file

@ -330,7 +330,7 @@ relay_connd_gtk( void* XP_UNUSED(closure), XP_Bool allHere, XP_U16 nMissing )
}
if ( !skip ) {
(void)gtkask_timeout( buf, GTK_BUTTONS_OK, 3 );
(void)gtkask_timeout( buf, GTK_BUTTONS_OK, 1 );
}
}

View file

@ -4,11 +4,14 @@ DICT=${DICT:-./dict.xwd}
COOKIE=${COOKIE:-foo}
NGAMES=${NGAMES:-1}
NPLAYERS=${NPLAYERS:-2}
USE_GTK=${USE_GTK:-FALSE}
[ $USE_GTK = FALSE ] && CURSES_PARM="-u -0"
usage() {
echo "usage: [env=val *] $0" 1>&2
echo " current env variables and their values: " 1>&2
for VAR in COOKIE DICT NGAMES NPLAYERS; do
for VAR in COOKIE DICT NGAMES NPLAYERS USE_GTK; do
echo "$VAR:" $(eval "echo \$${VAR}") 1>&2
done
exit 0
@ -28,8 +31,8 @@ for II in $(seq $NGAMES); do
REMOTES="${REMOTES} -N"
done
for JJ in $(seq $NPLAYERS); do
./obj_linux_memdbg/xwords -u -0 -d $DICT -r Eric $REMOTES -C $COOKIE \
-q 2 2>log_${II}_${JJ}.txt >/dev/null &
./obj_linux_memdbg/xwords $CURSES_PARM -d $DICT -r Eric $REMOTES \
-C $COOKIE -q 2 2>log_${II}_${JJ}.txt >/dev/null &
done
done