diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2019-06-23 16:30:12 +0200 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2019-09-22 15:18:10 +0200 |
commit | b7e15d17a48286548f26f93594fb1b0b700dd422 (patch) | |
tree | c2059caee250b149549a1f559c05939f0c816c5c /rts/RetainerProfile.h | |
parent | ec1d76e29d517e9c3c37e0a481f0cbac79687776 (diff) | |
download | haskell-b7e15d17a48286548f26f93594fb1b0b700dd422.tar.gz |
rts: retainer: Rename heap traversal functions for extraction
This gets all remaining functions in-line with the new 'traverse' prefix
and module name.
Diffstat (limited to 'rts/RetainerProfile.h')
-rw-r--r-- | rts/RetainerProfile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/RetainerProfile.h b/rts/RetainerProfile.h index 3eb27a7346..5d54afe2aa 100644 --- a/rts/RetainerProfile.h +++ b/rts/RetainerProfile.h @@ -18,7 +18,7 @@ void initRetainerProfiling ( void ); void endRetainerProfiling ( void ); void retainerProfile ( void ); -void resetStaticObjectForRetainerProfiling( StgClosure *static_objects ); +void resetStaticObjectForProfiling( StgClosure *static_objects ); /* See Note [Profiling heap traversal visited bit]. */ extern StgWord flip; @@ -39,8 +39,8 @@ retainerSetOf( const StgClosure *c ) return (RetainerSet *)((StgWord)RSET(c) ^ flip); } -// Used by Storage.c:memInventory() -extern W_ retainerStackBlocks ( void ); +// Used by GC.c +W_ retainerStackBlocks(void); #include "EndPrivate.h" |