diff options
author | Nicolas Frisby <nicolas.frisby@gmail.com> | 2013-04-04 22:20:27 +0100 |
---|---|---|
committer | Nicolas Frisby <nicolas.frisby@gmail.com> | 2013-04-11 12:15:04 +0100 |
commit | 155d943cbbe0ee8c3443bb76c74dff99355b55aa (patch) | |
tree | 8904ac20b60e7984dac752c3ac0f1842cd93a26f /rts/Ticky.c | |
parent | 27cf625ab871f34434d9fe86cecf85a31f73f0e5 (diff) | |
download | haskell-155d943cbbe0ee8c3443bb76c74dff99355b55aa.tar.gz |
added ticky counters for heap and stack checks
Diffstat (limited to 'rts/Ticky.c')
-rw-r--r-- | rts/Ticky.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rts/Ticky.c b/rts/Ticky.c index 243897fbe4..0d33c43d79 100644 --- a/rts/Ticky.c +++ b/rts/Ticky.c @@ -330,6 +330,9 @@ PrintTickyInfo(void) PR_CTR(ALLOC_HEAP_ctr); PR_CTR(ALLOC_HEAP_tot); + PR_CTR(HEAP_CHK_ctr); + PR_CTR(STK_CHK_ctr); + PR_CTR(ALLOC_RTS_ctr); PR_CTR(ALLOC_RTS_tot); |