#include <infolines.h>
Collaboration diagram for MemUsage:
Public Member Functions | |
MemUsage () | |
double | getPeakMem () const |
double | getEstimate () const |
operator double () const | |
Private Attributes | |
double | _peak |
double | _estimate |
|
Definition at line 181 of file platfDepend.cxx. References _estimate, _peak, getMemoryUsageEstimate(), and getPeakMemoryUsage().
00182 { 00183 _peak=getPeakMemoryUsage(); 00184 #if (defined(sun) || defined(__SUNPRO_CC) || defined(linux)) 00185 _estimate=_peak; 00186 return ; 00187 #endif 00188 _estimate=getMemoryUsageEstimate(); 00189 } |
Here is the call graph for this function:
|
Definition at line 122 of file infolines.h. References _estimate. Referenced by operator<<().
00122 { return _estimate; } |
|
Definition at line 121 of file infolines.h. References _peak.
00121 { return _peak; } |
|
Definition at line 123 of file infolines.h. References _estimate.
00123 { return _estimate; } |
|
Definition at line 117 of file infolines.h. Referenced by getEstimate(), MemUsage(), and operator double(). |
|
Definition at line 115 of file infolines.h. Referenced by getPeakMem(), and MemUsage(). |