[commit: ghc] master: make it safe to include this after GCTDecl.h (900e7d2)

Simon Marlow marlowsd at gmail.com
Thu Jan 17 11:20:45 CET 2013


Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/900e7d255e2e41bab50e239f9b12c30bd6254881

>---------------------------------------------------------------

commit 900e7d255e2e41bab50e239f9b12c30bd6254881
Author: Simon Marlow <marlowsd at gmail.com>
Date:   Wed Jan 16 19:38:56 2013 +0000

    make it safe to include this after GCTDecl.h

>---------------------------------------------------------------

 rts/Stats.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/rts/Stats.h b/rts/Stats.h
index 008ef62..0961f3f 100644
--- a/rts/Stats.h
+++ b/rts/Stats.h
@@ -27,13 +27,13 @@ struct gc_thread_;
 void      stat_startInit(void);
 void      stat_endInit(void);
 
-void      stat_startGC(Capability *cap, struct gc_thread_ *gct);
-void      stat_endGC  (Capability *cap, struct gc_thread_ *gct,
+void      stat_startGC(Capability *cap, struct gc_thread_ *_gct);
+void      stat_endGC  (Capability *cap, struct gc_thread_ *_gct,
                        W_ alloc, W_ live, W_ copied, W_ slop, nat gen,
                        nat n_gc_threads, W_ par_max_copied, W_ par_tot_copied);
 
-void stat_gcWorkerThreadStart (struct gc_thread_ *gct);
-void stat_gcWorkerThreadDone  (struct gc_thread_ *gct);
+void stat_gcWorkerThreadStart (struct gc_thread_ *_gct);
+void stat_gcWorkerThreadDone  (struct gc_thread_ *_gct);
 
 #ifdef PROFILING
 void      stat_startRP(void);





More information about the ghc-commits mailing list