diff options
author | Simon Marlow <simonmarhaskell@gmail.com> | 2008-04-16 21:48:25 +0000 |
---|---|---|
committer | Simon Marlow <simonmarhaskell@gmail.com> | 2008-04-16 21:48:25 +0000 |
commit | 4c394999264d602f10e7623cefa7588423c4f68b (patch) | |
tree | 3b68e9af98e5f0a745bf77082ec0ef32c71ea3fc /rts/RetainerProfile.h | |
parent | 938142abe2999ef941ce4998b830fbd7e770fb4e (diff) | |
download | haskell-4c394999264d602f10e7623cefa7588423c4f68b.tar.gz |
GC: move static object processinng into thread-local storage
Diffstat (limited to 'rts/RetainerProfile.h')
-rw-r--r-- | rts/RetainerProfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RetainerProfile.h b/rts/RetainerProfile.h index 827daa8ef4..f33c079f04 100644 --- a/rts/RetainerProfile.h +++ b/rts/RetainerProfile.h @@ -18,7 +18,7 @@ extern void initRetainerProfiling ( void ); extern void endRetainerProfiling ( void ); extern void printRetainer ( FILE *, retainer ); extern void retainerProfile ( void ); -extern void resetStaticObjectForRetainerProfiling ( void ); +extern void resetStaticObjectForRetainerProfiling( StgClosure *static_objects ); extern StgWord RTS_VAR(flip); |