diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-11-12 13:53:39 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-11-12 13:53:39 +0000 |
commit | 1106d27996b3961b7666d289a50290b1fcc15947 (patch) | |
tree | 43cc9266946558be7f23e09e1695b151ce2ca292 /includes | |
parent | e5959748501564df4a266cbf4df94cb28327f76d (diff) | |
download | haskell-1106d27996b3961b7666d289a50290b1fcc15947.tar.gz |
Switch EventThreadID back to 32 bits.
The log file format was still using 32 bits, this just updates the
header file to match; there should be no functional changes.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/EventLogFormat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/rts/EventLogFormat.h b/includes/rts/EventLogFormat.h index ced4d107b1..83330dadaa 100644 --- a/includes/rts/EventLogFormat.h +++ b/includes/rts/EventLogFormat.h @@ -145,7 +145,7 @@ typedef StgWord16 EventTypeNum; typedef StgWord64 EventTimestamp; // in nanoseconds -typedef StgWord64 EventThreadID; +typedef StgWord32 EventThreadID; typedef StgWord16 EventCapNo; typedef StgWord16 EventPayloadSize; // variable-size events |