diff options
author | Brian Brooks <brooks.brian@gmail.com> | 2014-07-10 02:55:33 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-10 11:21:26 -0500 |
commit | 3c9fc104337a142fe4f375d30d7a6b81d55a70c1 (patch) | |
tree | 5db059908fa46e495e6bd1354ff51c0e3cc254b1 /rts/Stats.h | |
parent | 61cce9116ac1a927632979e56dfa9754c69d2441 (diff) | |
download | haskell-3c9fc104337a142fe4f375d30d7a6b81d55a70c1.tar.gz |
Avoid unnecessary clock_gettime() syscalls in GC stats.
Summary: Avoid unnecessary clock_gettime() syscalls in GC stats.
Test Plan: Use strace.
Reviewers: simonmar, austin
Reviewed By: simonmar, austin
Subscribers: simonmar, relrod, carter
Differential Revision: https://phabricator.haskell.org/D39
Diffstat (limited to 'rts/Stats.h')
-rw-r--r-- | rts/Stats.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/rts/Stats.h b/rts/Stats.h index 9839e5cf2a..925920f108 100644 --- a/rts/Stats.h +++ b/rts/Stats.h @@ -32,9 +32,6 @@ void stat_endGC (Capability *cap, struct gc_thread_ *_gct, 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); - #ifdef PROFILING void stat_startRP(void); void stat_endRP(nat, |