diff options
author | Simon Marlow <marlowsd@gmail.com> | 2013-01-16 19:38:56 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2013-01-17 10:04:47 +0000 |
commit | 900e7d255e2e41bab50e239f9b12c30bd6254881 (patch) | |
tree | c72b20d8018885964eeea71ff6e13cfadcc3cfaf /rts/Stats.h | |
parent | 520dc1d245fa5d965bdc7e97231e868de7c1dd9e (diff) | |
download | haskell-900e7d255e2e41bab50e239f9b12c30bd6254881.tar.gz |
make it safe to include this after GCTDecl.h
Diffstat (limited to 'rts/Stats.h')
-rw-r--r-- | rts/Stats.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rts/Stats.h b/rts/Stats.h index 008ef62ac4..0961f3faf1 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); |