MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / printStacks

Method printStacks

source/kernel/ksystem.cpp:326–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324}
325
326void KSystem::printStacks() {
327 for (auto& n : KSystem::processes) {
328 const KProcessPtr& process = n.value;
329
330 klog_fmt("process %X %s%s", process->id, process->terminated?"TERMINATED ":"", process->commandLine.c_str());
331 process->printStack();
332 }
333}
334
335U32 KSystem::kill(S32 pid, U32 signal) {
336 KProcessPtr process;

Callers

nothing calls this directly

Calls 3

klog_fmtFunction · 0.85
printStackMethod · 0.80
c_strMethod · 0.45

Tested by

no test coverage detected