Undo my backout of the code to flush trace-malloc logfiles. b=111651 rs=brendan

This commit is contained in:
dbaron%fas.harvard.edu 2002-01-16 00:40:39 +00:00
Родитель 445536c139
Коммит db566a1e35
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -332,6 +332,17 @@ NS_IMETHODIMP nsAppShell::Spindown()
return NS_OK;
}
#ifdef NS_TRACE_MALLOC
#include "nsTraceMalloc.h"
static gint
tm_flush_logfiles(gpointer data)
{
NS_TraceMallocFlushLogfiles();
return 1;
}
#endif
//-------------------------------------------------------------------------
//
// Run
@ -345,6 +356,10 @@ NS_IMETHODIMP nsAppShell::Run()
if (!mEventQueue)
return NS_ERROR_NOT_INITIALIZED;
#ifdef NS_TRACE_MALLOC
gtk_idle_add(tm_flush_logfiles, nsnull);
#endif
// kick up gtk_main. this won't return until gtk_main_quit is called
gtk_main();