Provides Report on memory usage by the application and writes it to the logfile for the current thread Arguments: None Returns: None

Return TypeFunction nameArguments
voidRecordMemoryUsage(bool,)

Declared in file: hzProcess.h
Defined in file : hzMemory.cpp

Function Logic:

0:START 1:pLog 2:unknown 3: No text 4:items items items 5: No text

Function body:

void RecordMemoryUsage (bool bHtml)
{
   //  Category: Diagnostics
   //  
   //  Provides Report on memory usage by the application and writes it to the logfile for the current thread
   //  
   //  Arguments: None
   //  Returns: None
   hzChain     Z ;     //  Report output chain
   hzLogger*   pLog ;  //  Current thread logger
   pLog = GetThreadLogger() ;
   if (!pLog)
       return ;
   pLog->Out("Start of Memory Report\n") ;
   ReportMemoryUsage(Z, bHtml) ;
   pLog->Out(Z) ;
}