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 /includes/stg/Ticky.h | |
parent | 27cf625ab871f34434d9fe86cecf85a31f73f0e5 (diff) | |
download | haskell-155d943cbbe0ee8c3443bb76c74dff99355b55aa.tar.gz |
added ticky counters for heap and stack checks
Diffstat (limited to 'includes/stg/Ticky.h')
-rw-r--r-- | includes/stg/Ticky.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/stg/Ticky.h b/includes/stg/Ticky.h index 32a7f2006d..182c99654f 100644 --- a/includes/stg/Ticky.h +++ b/includes/stg/Ticky.h @@ -111,6 +111,9 @@ EXTERN StgInt UPD_PAP_IN_PLACE_ctr INIT(0); EXTERN StgInt ALLOC_HEAP_ctr INIT(0); EXTERN StgInt ALLOC_HEAP_tot INIT(0); +EXTERN StgInt HEAP_CHK_ctr INIT(0); +EXTERN StgInt STK_CHK_ctr INIT(0); + EXTERN StgInt ALLOC_RTS_ctr INIT(0); EXTERN StgInt ALLOC_RTS_tot INIT(0); |