From fbbd8bedc973b5c6640580d4caee55084166a4a8 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 17 Feb 2000 14:15:10 +0000 Subject: [PATCH] [project @ 2000-02-17 14:15:10 by simonmar] clean up: some parallel stuff had escaped from #ifdef PAR (Hans???) --- ghc/rts/RtsFlags.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/ghc/rts/RtsFlags.c b/ghc/rts/RtsFlags.c index 8324e1a..4180e63 100644 --- a/ghc/rts/RtsFlags.c +++ b/ghc/rts/RtsFlags.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsFlags.c,v 1.24 2000/01/13 14:34:04 hwloidl Exp $ + * $Id: RtsFlags.c,v 1.25 2000/02/17 14:15:10 simonmar Exp $ * * (c) The AQUA Project, Glasgow University, 1994-1997 * (c) The GHC Team, 1998-1999 @@ -394,36 +394,36 @@ usage_text[] = { " -r Produce reduction profiling statistics (with -rstderr for stderr)", "", #endif -# ifdef PAR +#if defined(PAR) " -N Use PVMish processors in parallel (default: 2)", /* NB: the -N is implemented by the driver!! */ -# endif +#endif " -C Context-switch interval in seconds", " (0 or no argument means switch as often as possible)", " the default is .01 sec; resolution is .01 sec", -# ifdef SMP +#if defined(SMP) " -N Use OS threads (default: 1)", -# endif -" -e Size of spark pools (default 100)", +#endif +#if defined(SMP) || defined(PAR) +" -e Size of spark pools (default 100)", +#endif +#if defined(PAR) " -t Set maximum number of advisory threads per PE (default 32)", -" -o Set stack chunk size (default 1024)", - -# ifdef PAR " -qP Enable activity profile (output files in ~/*.gr)", " -qQ Set pack-buffer size (default: 1024)", " -qd Turn on PVM-ish debugging", " -qO Disable output for performance measurement", -# endif -# if defined(SMP) || defined(PAR) +#endif +#if defined(SMP) || defined(PAR) " -e Maximum number of outstanding local sparks (default: 4096)", #endif -# ifdef PAR +#if defined(PAR) " -d Turn on PVM-ish debugging", " -O Disable output for performance measurement", -# endif /* PAR */ -# ifdef GRAN /* ToDo: fill in decent Docu here */ +#endif /* PAR */ +#if defined(GRAN) /* ToDo: fill in decent Docu here */ " -b... All GranSim options start with -b; see GranSim User's Guide for details", -# endif +#endif "", "Other RTS options may be available for programs compiled a different way.", "The GHC User's Guide has full details.", -- 1.7.10.4