From e06f49c0064c61fec5fa79b034dee5fcb1a15247 Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Thu, 10 Feb 2022 10:23:49 +0000 Subject: eventlog: Fix size of TICKY_COUNTER_BEGIN_SAMPLE --- rts/gen_event_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rts') 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]: -- cgit v1.2.1