We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 836fb02 commit 7091127Copy full SHA for 7091127
1 file changed
process.cc
@@ -695,11 +695,11 @@ Process::dumpStackText(std::ostream &os, const Lwp &lwp)
695
os << std::dec;
696
if (lwp.threadInfo.has_value()) {
697
auto &ti = *lwp.threadInfo;
698
- os << "lwp: " << (void *)ti.ti_tid
+ os << "thread: " << (void *)ti.ti_tid
699
<< ", type: " << ti.ti_type
700
- ;
+ << ", ";
701
}
702
- os << ", lwp: " << lwp.id;
+ os << "lwp: " << lwp.id;
703
if (lwp.name.has_value())
704
os << ", name: " << *lwp.name;
705
os << "\n";
0 commit comments