ATLAS Offline Software
Loading...
Searching...
No Matches
getMemUsage.h
Go to the documentation of this file.
1// -*- C++ -*-
2
3/*
4 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef PS_GETMEMUSAGE_H
8#define PS_GETMEMUSAGE_H
9#include <iosfwd>
10
11namespace PSUtils
12{
13 struct MemStruct
14 {
15 int totalSize{};
18 int textSize{};
20 int stackSize{};
22 };
23
24
25 MemStruct getMemUsage();
26 std::ostream& operator<<(std::ostream&, const MemStruct&);
27 std::istream& operator>>(std::istream&, MemStruct&);
28}
29#endif // PS_GETMEMUSAGE_H
MemStruct getMemUsage()
std::ostream & operator<<(std::ostream &os, const MemStruct &s)
std::istream & operator>>(std::istream &is, MemStruct &s)