summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-02-10 10:23:49 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-10 19:20:48 -0500
commite06f49c0064c61fec5fa79b034dee5fcb1a15247 (patch)
tree3d37ca057b1e117f8292be3661a575f1dc517e2a /rts
parent19413d09a3939c97a8a3b8890f97c3cf48af31d1 (diff)
downloadhaskell-e06f49c0064c61fec5fa79b034dee5fcb1a15247.tar.gz
eventlog: Fix size of TICKY_COUNTER_BEGIN_SAMPLE
Diffstat (limited to 'rts')
-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]: