Date: Monday July 17, 2000 @ 13:46 Author: ahn Update of /home/netrek/cvsroot/Vanilla/robots In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv22018/robots Modified Files: end_tourney.pl Log Message: Fix end_tourney.pl to do unbuffered I/O. **************************************** Index: Vanilla/robots/end_tourney.pl diff -u Vanilla/robots/end_tourney.pl:1.10 Vanilla/robots/end_tourney.pl:1.11 --- Vanilla/robots/end_tourney.pl:1.10 Wed Jun 7 13:09:13 2000 +++ Vanilla/robots/end_tourney.pl Mon Jul 17 13:46:59 2000 @@ -1,6 +1,6 @@ #!/usr/bin/env perl # -# $Id: end_tourney.pl,v 1.10 2000/06/07 18:09:13 ahn Exp $ +# $Id: end_tourney.pl,v 1.11 2000/07/17 18:46:59 ahn Exp $ # # end_tourney.pl # @@ -64,6 +64,11 @@ open (INPUT,"$inputfile"); open (OUTPUT,">$outputfile"); + +# make unbuffered I/O +select(OUTPUT); $| = 1; +select(STDERR); $| = 1; +select(STDOUT); $| = 1; $homecurrentplanets=10; $awaycurrentplanets=10;