diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2019-07-02 10:38:13 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-17 19:21:10 -0400 |
commit | ae4415b9487d24942aa0e91052d4b897a3cf2f2e (patch) | |
tree | 7114c5e3418cf480339f69313f8960adeb12e05a /includes | |
parent | 7915afc6bb9539a4534db99aeb6616a6d145918a (diff) | |
download | haskell-ae4415b9487d24942aa0e91052d4b897a3cf2f2e.tar.gz |
eventlog: Add biographical and retainer profiling traces
This patch adds a new eventlog event which indicates the start of
a biographical profiler sample. These are different to normal events as
they also include the timestamp of when the census took place. This is
because the LDV profiler only emits samples at the end of the run.
Now all the different profiling modes emit consumable events to the
eventlog.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/EventLogFormat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/rts/EventLogFormat.h b/includes/rts/EventLogFormat.h index 462e036d90..ad983e70b3 100644 --- a/includes/rts/EventLogFormat.h +++ b/includes/rts/EventLogFormat.h @@ -179,6 +179,7 @@ #define EVENT_HEAP_PROF_SAMPLE_COST_CENTRE 163 #define EVENT_HEAP_PROF_SAMPLE_STRING 164 #define EVENT_HEAP_PROF_SAMPLE_END 165 +#define EVENT_HEAP_BIO_PROF_SAMPLE_BEGIN 166 #define EVENT_USER_BINARY_MSG 181 |