diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-10 10:23:49 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-10 19:20:48 -0500 |
commit | e06f49c0064c61fec5fa79b034dee5fcb1a15247 (patch) | |
tree | 3d37ca057b1e117f8292be3661a575f1dc517e2a | |
parent | 19413d09a3939c97a8a3b8890f97c3cf48af31d1 (diff) | |
download | haskell-e06f49c0064c61fec5fa79b034dee5fcb1a15247.tar.gz |
eventlog: Fix size of TICKY_COUNTER_BEGIN_SAMPLE
-rwxr-xr-x | rts/gen_event_types.py | 2 |
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]: |