diff options
author | Duncan Coutts <duncan@well-typed.com> | 2011-10-27 12:44:05 +0100 |
---|---|---|
committer | Duncan Coutts <duncan@well-typed.com> | 2011-10-27 14:11:29 +0100 |
commit | aaaaf67b2fca9bd9b0027c983bfc9f9255b2bce5 (patch) | |
tree | 05fde263c78acd6ab6bea2da62d1520a10976b1e /includes | |
parent | 6f5b798bc6a94a12dd3122a62e4e97af528c8c75 (diff) | |
download | haskell-aaaaf67b2fca9bd9b0027c983bfc9f9255b2bce5.tar.gz |
Add an RTS eventlog tracing class for user messages
Enables people to turn them on/off. Defaults to on.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/Flags.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/rts/Flags.h b/includes/rts/Flags.h index 46f1eb893b..2d1516f586 100644 --- a/includes/rts/Flags.h +++ b/includes/rts/Flags.h @@ -131,6 +131,7 @@ struct TRACE_FLAGS { rtsBool gc; /* trace GC events */ rtsBool sparks_sampled; /* trace spark events by a sampled method */ rtsBool sparks_full; /* trace spark events 100% accurately */ + rtsBool user; /* trace user events (emitted from Haskell code) */ }; struct CONCURRENT_FLAGS { |