diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-09-13 21:25:46 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-09-13 21:25:46 +0000 |
commit | d71615757d0462b1721ee3664c5fa9f79325d666 (patch) | |
tree | 6ef3b796b0610e7cafea2904600a52c0961e0b13 /includes | |
parent | 064562360a310f08592d41e9fceb3404932c4a04 (diff) | |
download | haskell-d71615757d0462b1721ee3664c5fa9f79325d666.tar.gz |
Add event block markers
These indicate the size and time span of a sequence of events in the
event log, to make it easier to sort and navigate a large event log.
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 a860822ab9..402ec52501 100644 --- a/includes/rts/EventLogFormat.h +++ b/includes/rts/EventLogFormat.h @@ -116,8 +116,9 @@ #define EVENT_LOG_CAP_MSG 16 /* (cap, message ...) */ #define EVENT_LOG_MSG 17 /* (message ...) */ #define EVENT_STARTUP 18 /* (num_capabilities) */ +#define EVENT_BLOCK_MARKER 19 /* (size, end_time) */ -#define NUM_EVENT_TAGS 19 +#define NUM_EVENT_TAGS 20 #if 0 /* DEPRECATED EVENTS: */ #define EVENT_CREATE_SPARK 13 /* (cap, thread) */ |