diff options
Diffstat (limited to 'src/rt/rust_builtin.cpp')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index 8654e050..3a89cd5c 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -338,6 +338,10 @@ debug_fn(rust_task *task, type_desc *t, rust_fn *fn) debug_tydesc_helper(task, t); task->log(rust_log::STDLIB, " thunk at 0x%" PRIxPTR, fn->thunk); task->log(rust_log::STDLIB, " closure at 0x%" PRIxPTR, fn->closure); + if (fn->closure) { + task->log(rust_log::STDLIB, " refcount %" PRIdPTR, + fn->closure->ref_count); + } } extern "C" CDECL void * |