CMS 3D CMS Logo

memory_usage.h
Go to the documentation of this file.
1 #ifndef memory_usage_h
2 #define memory_usage_h
3 
4 #include <cstdint>
5 
6 class memory_usage {
7 public:
8  static bool is_available();
9  static uint64_t allocated();
10  static uint64_t deallocated();
11 };
12 
13 #endif // memory_usage_h
static uint64_t deallocated()
Definition: memory_usage.cc:75
static bool is_available()
Definition: memory_usage.cc:65
unsigned long long uint64_t
Definition: Time.h:15
static uint64_t allocated()
Definition: memory_usage.cc:70