diff options
author | Rickard Green <[email protected]> | 2011-01-14 12:04:54 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2011-02-10 14:28:29 +0100 |
commit | 96effb9c1115f7a168d4db625726c738240d4c9b (patch) | |
tree | 31183f95883f043fa8a2a8e7391fd02b62ea3ead /erts/emulator/beam/erl_alloc_util.c | |
parent | c694c0be5656bda37fafdef858a82c76bdcf8f14 (diff) | |
download | otp-96effb9c1115f7a168d4db625726c738240d4c9b.tar.gz otp-96effb9c1115f7a168d4db625726c738240d4c9b.tar.bz2 otp-96effb9c1115f7a168d4db625726c738240d4c9b.zip |
Verify that temp allocated memory is released
Diffstat (limited to 'erts/emulator/beam/erl_alloc_util.c')
-rw-r--r-- | erts/emulator/beam/erl_alloc_util.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_alloc_util.c b/erts/emulator/beam/erl_alloc_util.c index 8b184899c9..c09f0bbd77 100644 --- a/erts/emulator/beam/erl_alloc_util.c +++ b/erts/emulator/beam/erl_alloc_util.c @@ -3368,6 +3368,38 @@ erts_alcu_test(unsigned long op, unsigned long a1, unsigned long a2) * Debug functions * \* */ +void +erts_alcu_verify_unused(Allctr_t *allctr) +{ + UWord no; + + no = allctr->sbcs.curr_mseg.no; + no += allctr->sbcs.curr_sys_alloc.no; + no += allctr->mbcs.blocks.curr.no; + + if (no) { + UWord sz = allctr->sbcs.blocks.curr.size; + sz += allctr->mbcs.blocks.curr.size; + erl_exit(ERTS_ABORT_EXIT, + "%salloc() used when expected to be unused!\n" + "Total amount of blocks allocated: %bpu\n" + "Total amount of bytes allocated: %bpu\n", + allctr->name_prefix, no, sz); + } +} + +void +erts_alcu_verify_unused_ts(Allctr_t *allctr) +{ +#ifdef USE_THREADS + erts_mtx_lock(&allctr->mutex); +#endif + erts_alcu_verify_unused(allctr); +#ifdef USE_THREADS + erts_mtx_unlock(&allctr->mutex); +#endif +} + #ifdef ERTS_ALLOC_UTIL_HARD_DEBUG static void |