summaryrefslogtreecommitdiff
path: root/rts/Profiling.c
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2020-11-21 11:10:22 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-11-30 19:48:53 -0500
commit490aa14dbc98e4713f913c4417d454e53b8b278a (patch)
treedb2dcb5c605dcf1ab6c424e40c627a4ec6085537 /rts/Profiling.c
parent5eb163f321fdc9a3dbb5e02a157b7f8194e70fcc (diff)
downloadhaskell-490aa14dbc98e4713f913c4417d454e53b8b278a.tar.gz
rts/linker: Initialise CCSs from native shared objects
Diffstat (limited to 'rts/Profiling.c')
-rw-r--r--rts/Profiling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Profiling.c b/rts/Profiling.c
index 04f00da157..c84296cd5d 100644
--- a/rts/Profiling.c
+++ b/rts/Profiling.c
@@ -54,7 +54,7 @@ FILE *prof_file;
// List of all cost centres. Used for reporting.
CostCentre *CC_LIST = NULL;
// All cost centre stacks temporarily appear here, to be able to make CCS_MAIN a
-// parent of all cost centres stacks (done in initProfiling2()).
+// parent of all cost centres stacks (done in refreshProfilingCCSs()).
static CostCentreStack *CCS_LIST = NULL;
#if defined(THREADED_RTS)