removed prints now that the memory leaks are gone

master
xtremegamer1 2 years ago
parent 25c3008dc2
commit ff1790ae22

@ -3,4 +3,5 @@
extern int g_allocation_tracker;
uc_err uct_context_alloc(uc_engine *uc, uc_context **context);
uc_err uct_context_free(uc_context *context);
uc_err uct_context_free(uc_context *context);
void print_allocation_number();

@ -5,11 +5,18 @@ int g_allocation_tracker;
uc_err uct_context_alloc(uc_engine *uc, uc_context **context)
{
std::printf("Allocations: %p\n", ++g_allocation_tracker);
++g_allocation_tracker;
//std::printf("Allocations: %p\n", g_allocation_tracker);
return uc_context_alloc(uc, context);
}
uc_err uct_context_free(uc_context *context)
{
std::printf("Allocations: %p\n", --g_allocation_tracker);
+g_allocation_tracker--;
//std::printf("Allocations: %p\n", g_allocation_tracker);
return uc_context_free(context);
}
void print_allocation_number()
{
std::printf("uc_context allocations: %p\n", g_allocation_tracker);
}
Loading…
Cancel
Save