From 648b14571cea654a867f0353f3e609a48d1086ec Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 6 Feb 2020 13:15:51 -0500 Subject: [PATCH] Log block size --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc.c b/gc.c index 15e10ce5..abfec252 100644 --- a/gc.c +++ b/gc.c @@ -1300,7 +1300,7 @@ long long tstamp = hrt_get_current(); unsigned int h_size = h->size; gc_heap *keep = gc_sweep_fixed_size(h, heap_type, thd); // Clean up garbage objects #ifdef CYC_HIGH_RES_TIMERS -fprintf(stderr, "sweep fixed size heap %p \n", h); +fprintf(stderr, "sweep fixed size heap %p size %lu \n", h, size); hrt_log_delta("gc sweep fixed size", tstamp); #endif h_passed->num_unswept_children--;