string getParentMethod() { Backtrace b; b.setFramesToCapture(3); b.capture(); return b[0].sym; }
string showBacktrace() { Backtrace tmp = Backtrace(); tmp.capture(); return tmp.dump(); }