diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-11-24 08:27:09 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-11-24 08:27:19 +0100 |
commit | 249fd5e56b60899b7ee2a7551f643307796247bc (patch) | |
tree | 36df2341786bd0a73afe2586fbac70432540d3f6 /lib/pure/nimtracker.nim | |
parent | 074f276c8a753bbb85788777b7c58a074f41329f (diff) | |
download | Nim-249fd5e56b60899b7ee2a7551f643307796247bc.tar.gz |
further memtracking improvements
Diffstat (limited to 'lib/pure/nimtracker.nim')
-rw-r--r-- | lib/pure/nimtracker.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/nimtracker.nim b/lib/pure/nimtracker.nim index db29b4252..52fa9da77 100644 --- a/lib/pure/nimtracker.nim +++ b/lib/pure/nimtracker.nim @@ -32,7 +32,7 @@ template sbind(x: int; value) = quit "could not bind value" when defined(memTracker): - proc logEntries(log: TrackLog) {.nimcall.} = + proc logEntries(log: TrackLog) {.nimcall, locks: 0, tags: [].} = for i in 0..log.count-1: var success = false let e = log.data[i] |