From 339e13537ad3c4717bb1245747b0e35964a4283b Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 29 Apr 2020 17:48:43 +0200 Subject: chattyparser: don't treat thread_termination as allocation --- src/chattyparser.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/chattyparser.py b/src/chattyparser.py index 33dbf88..1f0242c 100755 --- a/src/chattyparser.py +++ b/src/chattyparser.py @@ -124,6 +124,9 @@ def record_allocation(trace, context): size = 0 msg = "" + if trace.func == Function.thread_termination: + return "" + # get size if trace.func == Function.free: # get size and delete old pointer -- cgit v1.2.3