diff options
author | Ben Gamari <ben@smart-cactus.org> | 2015-08-31 22:39:13 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-09-05 10:54:45 +0200 |
commit | 062feee4e7408ad5b9d882e5fed2c700e337db72 (patch) | |
tree | 5a683dc20960e9a245bc52bb38b5afa35d4c1cc1 /includes/rts | |
parent | 96b986b669410cf4b6945d1039f9e16e54f4e53f (diff) | |
download | haskell-062feee4e7408ad5b9d882e5fed2c700e337db72.tar.gz |
tracing: Kill EVENT_STARTUP
This has been unnecessary for quite some time due to the create/delete
capability events.
Diffstat (limited to 'includes/rts')
-rw-r--r-- | includes/rts/EventLogFormat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/rts/EventLogFormat.h b/includes/rts/EventLogFormat.h index a1e038f823..68d0d08f55 100644 --- a/includes/rts/EventLogFormat.h +++ b/includes/rts/EventLogFormat.h @@ -113,8 +113,7 @@ /* 13, 14 deprecated */ #define EVENT_CREATE_SPARK_THREAD 15 /* (spark_thread) */ #define EVENT_LOG_MSG 16 /* (message ...) */ -/* EVENT_STARTUP should be deprecated at some point */ -#define EVENT_STARTUP 17 /* (num_capabilities) */ +/* 17 deprecated */ #define EVENT_BLOCK_MARKER 18 /* (size, end_time, capability) */ #define EVENT_USER_MSG 19 /* (message ...) */ #define EVENT_GC_IDLE 20 /* () */ @@ -190,6 +189,7 @@ /* ghc changed how it handles sparks so these are no longer applicable */ #define EVENT_CREATE_SPARK 13 /* (cap, thread) */ #define EVENT_SPARK_TO_THREAD 14 /* (cap, thread, spark_thread) */ +#define EVENT_STARTUP 17 /* (num_capabilities) */ /* these are used by eden but are replaced by new alternatives for ghc */ #define EVENT_VERSION 23 /* (version_string) */ #define EVENT_PROGRAM_INVOCATION 24 /* (commandline_string) */ |