2019-06-13 15:42:39 -05:00
|
|
|
#ifndef VTR_RUSAGE_H
|
|
|
|
#define VTR_RUSAGE_H
|
|
|
|
#include <cstddef>
|
|
|
|
|
|
|
|
namespace vtr {
|
|
|
|
|
2020-01-03 17:14:42 -06:00
|
|
|
//Returns the maximum resident set size in bytes,
|
|
|
|
//or zero if unable to determine.
|
|
|
|
size_t get_max_rss();
|
|
|
|
} // namespace vtr
|
2019-06-13 15:42:39 -05:00
|
|
|
|
|
|
|
#endif
|