MCPcopy Create free account
hub / github.com/boutproject/BOUT-dev / getDump

Method getDump

src/sys/msg_stack.cxx:93–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93std::string MsgStack::getDump() {
94 std::string res = "====== Back trace ======\n";
95 for (int i = position - 1; i >= 0; i--) {
96 if (stack[i] != "") {
97 res += " -> ";
98 res += stack[i];
99 res += "\n";
100 }
101 }
102 return res;
103}
104
105#endif

Callers 3

getBacktraceMethod · 0.80
BOUT_OMP_SAFEFunction · 0.80
TESTFunction · 0.80

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.64