summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-02-10 10:23:49 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2022-02-10 10:24:40 +0000
commit064ff36116861a3180b5888249c9dd7e93ae5aa8 (patch)
tree3d3ce582f20723022ec8884a73c9fa85b8c52fea
parent03099ea88a0df996fc36438d2653f86006cec873 (diff)
downloadhaskell-wip/fix-eventlog-types.tar.gz
eventlog: Fix size of TICKY_COUNTER_BEGIN_SAMPLEwip/fix-eventlog-types
-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 b447fbdfae..7bcdf4fe19 100755
--- a/rts/gen_event_types.py
+++ b/rts/gen_event_types.py
@@ -135,7 +135,7 @@ event_types = [
# Ticky-ticky profiling
EventType(210, 'TICKY_COUNTER_DEF', VariableLength, 'Ticky-ticky entry counter definition'),
EventType(211, 'TICKY_COUNTER_SAMPLE', 4*[Word64], 'Ticky-ticky entry counter sample'),
- EventType(212, 'TICKY_COUNTER_BEGIN_SAMPLE', 4*[Word64], 'Ticky-ticky entry counter sample'),
+ EventType(212, 'TICKY_COUNTER_BEGIN_SAMPLE', [], 'Ticky-ticky entry counter begin sample'),
]
def check_events() -> Dict[int, EventType]: