disabling leak detective at runtime by setting LEAK_DETECTIVE_DISABLE env var

This commit is contained in:
Martin Willi 2007-06-08 07:21:03 +00:00
parent b9659a50dc
commit 9cc7a29786
1 changed files with 14 additions and 3 deletions

View File

@ -410,7 +410,10 @@ void *realloc_hook(void *old, size_t bytes, const void *caller)
*/
void __attribute__ ((constructor)) leak_detective_init()
{
install_hooks();
if (getenv("LEAK_DETECTIVE_DISABLE") == NULL)
{
install_hooks();
}
}
/**
@ -418,8 +421,11 @@ void __attribute__ ((constructor)) leak_detective_init()
*/
void __attribute__ ((destructor)) leak_detective_cleanup()
{
uninstall_hooks();
report_leaks();
if (getenv("LEAK_DETECTIVE_DISABLE") == NULL)
{
uninstall_hooks();
report_leaks();
}
}
/**
@ -431,6 +437,11 @@ void leak_detective_status(FILE *stream)
size_t bytes = 0;
memory_header_t *hdr = &first_header;
if (getenv("LEAK_DETECTIVE_DISABLE"))
{
return;
}
pthread_mutex_lock(&mutex);
while ((hdr = hdr->next))
{