summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-02-10 09:23:07 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-10 19:20:48 -0500
commitc995b7e7cfbd3584509bd31a8ea5b840f9fcb20e (patch)
treea816c8253ef6fcc2b90e1dda57a1ec6f163223d5
parent89cf8caac369279402443ae61bfa8d8d28f5d67f (diff)
downloadhaskell-c995b7e7cfbd3584509bd31a8ea5b840f9fcb20e.tar.gz
eventlog: Fix event type of EVENT_IPE
This leads to corrupted eventlogs because the size of EVENT_IPE is completely wrong. Fixes a bug introduced in 2e29edb7421c21902b47d130d45f60d3f584a0de
-rwxr-xr-xrts/gen_event_types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/gen_event_types.py b/rts/gen_event_types.py
index b0878ef2ab..39cded79b6 100755
--- a/rts/gen_event_types.py
+++ b/rts/gen_event_types.py
@@ -120,7 +120,7 @@ event_types = [
EventType(167, 'PROF_SAMPLE_COST_CENTRE', VariableLength, 'Time profile cost-centre stack'),
EventType(168, 'PROF_BEGIN', [Word64], 'Start of a time profile'),
- EventType(169, 'IPE', [Word64], 'Start of a time profile'),
+ EventType(169, 'IPE', VariableLength, 'An IPE entry'),
EventType(181, 'USER_BINARY_MSG', VariableLength, 'User binary message'),