#include <infolines.h>
Collaboration diagram for MemChange:
Public Member Functions | |
MemChange () | |
void | resetMark () |
operator double () const | |
Private Attributes | |
double | _memUsageMark |
|
Definition at line 196 of file platfDepend.cxx. References resetMark().
00197 { 00198 resetMark(); 00199 } |
Here is the call graph for this function:
|
Definition at line 201 of file platfDepend.cxx. References _memUsageMark, and getPeakMemoryUsage().
00202 { 00203 #if defined(sun) || defined(linux) || defined(__SUNPRO_CC) 00204 return getPeakMemoryUsage()-_memUsageMark; 00205 #else 00206 return -1.0; 00207 #endif 00208 } |
Here is the call graph for this function:
|
Definition at line 191 of file platfDepend.cxx. References _memUsageMark, and getMemoryUsageEstimate(). Referenced by MemChange().
00192 { 00193 _memUsageMark=getMemoryUsageEstimate(); 00194 } |
Here is the call graph for this function:
|
Definition at line 150 of file infolines.h. Referenced by operator double(), and resetMark(). |