MCPcopy Create free account
hub / github.com/ModOrganizer2/modorganizer / dump

Function dump

src/processrunner.cpp:173–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171}
172
173void dump(const env::Process& p, int indent)
174{
175 log::debug("{}{}, pid={}, ppid={}", std::string(indent * 4, ' '), p.name(), p.pid(),
176 p.ppid());
177
178 for (auto&& c : p.children()) {
179 dump(c, indent + 1);
180 }
181}
182
183void dump(const env::Process& root)
184{

Callers 4

getInterestingProcessFunction · 0.85
dumpDisksMethod · 0.85
loadMethod · 0.85
dumpMethod · 0.85

Calls 4

ppidMethod · 0.80
childrenMethod · 0.80
nameMethod · 0.45
pidMethod · 0.45

Tested by

no test coverage detected