23 #ifndef __ccxx_MemoryStats_hxx 24 #define __ccxx_MemoryStats_hxx 49 {
return(_physTotal); }
53 {
return(_physFree); }
57 {
return(_physUsed); }
66 {
return(_virtTotal); }
70 {
return(_virtFree); }
74 {
return(_virtUsed); }
93 #endif // __ccxx_MemoryStats_hxx A collector of system performance or resource utilization statistics.
Definition: SystemStats.h++:37
uint_t getVirtualMemoryUsed() const
Get the amount of used virtual memory, in bytes.
Definition: MemoryStats.h++:73
uint_t getVirtualMemoryTotal() const
Get the total amount of virtual memory, in bytes.
Definition: MemoryStats.h++:65
uint_t getVirtualMemoryFree() const
Get the amount of free virtual memory, in bytes.
Definition: MemoryStats.h++:69
System memory utilization statistics.
Definition: MemoryStats.h++:37
unsigned int uint_t
An alias for unsigned int.
Definition: Integers.h++:74
uint_t getPhysicalMemoryUsed() const
Get the amount of used physical memory, in bytes.
Definition: MemoryStats.h++:56
#define COMMONCPP_API
Definition: Common.h++:126
#define CCXX_COPY_DECLS(CLASS)
Inlines declarations of a copy constructor and assignment operator for the class CLASS.
Definition: Common.h++:295
uint_t getPhysicalMemoryTotal() const
Get the total amount of physical memory, in bytes.
Definition: MemoryStats.h++:48
Definition: AllocationMap.c++:25
uint_t getPhysicalMemoryFree() const
Get the amount of free physical memory, in bytes.
Definition: MemoryStats.h++:52