Go to the documentation of this file.
59 peak_ = size_ = rss_ = 0;
80 std::ifstream is(
"/proc/" + std::to_string(
Foam::pid()) +
"/status");
85 nkeys && is.good() && std::getline(is,
line);
89 const auto delim =
line.find(
':');
90 if (delim == std::string::npos)
95 const std::string
key(line.substr(0, delim));
103 peak_ = std::stoi(line.substr(delim+1));
106 else if (
key ==
"VmSize")
108 size_ = std::stoi(line.substr(delim+1));
111 else if (
key ==
"VmRSS")
113 rss_ = std::stoi(line.substr(delim+1));
128 std::ifstream is(
"/proc/meminfo");
133 nkeys && is.good() && std::getline(is, line);
137 const auto delim = line.find(
':');
138 if (delim == std::string::npos)
143 const std::string
key = line.substr(0, delim);
149 if (
key ==
"MemFree")
151 free_ = std::stoi(line.substr(delim+1));
175 is >> m.peak_ >> m.size_ >> m.rss_ >> m.free_;
176 is.readEnd(
"memInfo");
Functions used by OpenFOAM that are specific to POSIX compliant operating systems and need to be repl...
Useful combination of include files which define Sin, Sout and Serr and the use of IO streams general...
auto key(const Type &t) -> typename std::enable_if< std::is_enum< Type >::value, typename std::underlying_type< Type >::type >::type
Istream & operator>>(Istream &, directionInfo &)
bool readEnd(const char *funcName)
bool readBegin(const char *funcName)
Ostream & operator<<(Ostream &, const boundaryPatch &p)
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
virtual bool check(const char *operation) const
OBJstream os(runTime.globalPath()/outputName)
Memory usage information for the current process, and the system memory that is free.
Ostream & writeEntry(const keyType &key, const T &value)
@ END_LIST
End list [isseparator].
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
@ BEGIN_LIST
Begin list [isseparator].
void write(Ostream &os) const