From: simonmar Date: Tue, 28 Jan 2003 17:06:24 +0000 (+0000) Subject: [project @ 2003-01-28 17:06:24 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~1223 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=7fc7b66e0728877592e3ae851ebd9cef01bd4e92;p=ghc-hetmet.git [project @ 2003-01-28 17:06:24 by simonmar] I moved startTime here, from RtsStartup.c where it seemed out of placed --- diff --git a/ghc/rts/parallel/Parallel.c b/ghc/rts/parallel/Parallel.c index 97cdf0e..414b7e4 100644 --- a/ghc/rts/parallel/Parallel.c +++ b/ghc/rts/parallel/Parallel.c @@ -37,6 +37,10 @@ char gr_filename[STATS_FILENAME_MAXLEN]; GlobalParStats globalParStats; #endif +#if defined(PAR) +ullong startTime = 0; +#endif + #if defined(PAR) && !defined(DEBUG) // HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCCCCCCCCKKKKKKKKKKKK // Definitely the wrong place for info_type in !DEBUG (see Printer.c) -- HWL