diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-04-29 17:48:43 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-04-29 17:48:43 +0200 |
| commit | 339e13537ad3c4717bb1245747b0e35964a4283b (patch) | |
| tree | 7ee3e62c7db812d23aeff942f6469a1b8f30270c /src/chattyparser.py | |
| parent | 6fc5d5fc546fc11f35ac3fcafe41641ba3734413 (diff) | |
| download | allocbench-339e13537ad3c4717bb1245747b0e35964a4283b.tar.gz allocbench-339e13537ad3c4717bb1245747b0e35964a4283b.zip | |
chattyparser: don't treat thread_termination as allocation
Diffstat (limited to 'src/chattyparser.py')
| -rwxr-xr-x | src/chattyparser.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
