summaryrefslogtreecommitdiff
path: root/rts/eventlog/EventLog.h
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2019-05-29 16:56:08 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-06-07 10:21:57 -0400
commit0b7372f68c0bc9cafc30e227b574abf1d5b16df5 (patch)
treef1b33e977ed5fb858ba102815260136a89d1735c /rts/eventlog/EventLog.h
parente963beb54a243f011396942d2add644e3f3dd8ae (diff)
downloadhaskell-0b7372f68c0bc9cafc30e227b574abf1d5b16df5.tar.gz
Add HEAP_PROF_SAMPLE_END event to mark end of samples
This allows a user to observe how long a sampling period lasts so that the time taken can be removed from the profiling output. Fixes #16697
Diffstat (limited to 'rts/eventlog/EventLog.h')
-rw-r--r--rts/eventlog/EventLog.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/eventlog/EventLog.h b/rts/eventlog/EventLog.h
index 1fb7c4a071..8935e61985 100644
--- a/rts/eventlog/EventLog.h
+++ b/rts/eventlog/EventLog.h
@@ -140,6 +140,7 @@ void postTaskDeleteEvent (EventTaskId taskId);
void postHeapProfBegin(StgWord8 profile_id);
void postHeapProfSampleBegin(StgInt era);
+void postHeapProfSampleEnd(StgInt era);
void postHeapProfSampleString(StgWord8 profile_id,
const char *label,