diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-12-21 21:22:01 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-17 05:48:01 -0500 |
commit | 66e281fba605dd650d7c2530ab8a482bb79538cb (patch) | |
tree | 56c7cb1a2420a0b890be50b648771afe8c184f0b /includes | |
parent | 0ac5860ea4d45587771869970beecdd4da0cb105 (diff) | |
download | haskell-66e281fba605dd650d7c2530ab8a482bb79538cb.tar.gz |
rts/eventlog: Introduce event to demarcate new ticky sample
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/EventLogFormat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/rts/EventLogFormat.h b/includes/rts/EventLogFormat.h index d069ec6595..340a12d4e9 100644 --- a/includes/rts/EventLogFormat.h +++ b/includes/rts/EventLogFormat.h @@ -156,13 +156,14 @@ #define EVENT_TICKY_COUNTER_DEF 210 #define EVENT_TICKY_COUNTER_SAMPLE 211 +#define EVENT_TICKY_COUNTER_BEGIN_SAMPLE 212 /* * The highest event code +1 that ghc itself emits. Note that some event * ranges higher than this are reserved but not currently emitted by ghc. * This must match the size of the EventDesc[] array in EventLog.c */ -#define NUM_GHC_EVENT_TAGS 212 +#define NUM_GHC_EVENT_TAGS 213 #if 0 /* DEPRECATED EVENTS: */ /* we don't actually need to record the thread, it's implicit */ |