CbmRoot
Loading...
Searching...
No Matches
System.h
Go to the documentation of this file.
1/* Copyright (C) 2024 FIAS Frankfurt Institute for Advanced Studies, Frankfurt / Main
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Felix Weiglhofer [committer] */
4
5#pragma once
6
7#include <cstddef>
8
14namespace cbm::algo
15{
16
22 size_t GetCurrentRSS();
23
29 size_t GetPeakRSS();
30
31} // namespace cbm::algo
size_t GetCurrentRSS()
Get the current resident set size (pyhysical memory usage) of the process.
Definition System.cxx:15
size_t GetPeakRSS()
Get the peak resident set size (pyhysical memory usage) of the process.
Definition System.cxx:35