summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp4
-rw-r--r--lldb/source/Target/Thread.cpp2
2 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index c8dd1a1a9e6..612e1629d5e 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -196,6 +196,10 @@ public:
result.SetStatus (eReturnStatusFailed);
return false;
}
+
+ if (i < num_threads - 1)
+ result.AppendMessage("");
+
}
}
else
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp
index b1a3c15b6b3..267f1fc8999 100644
--- a/lldb/source/Target/Thread.cpp
+++ b/lldb/source/Target/Thread.cpp
@@ -1126,6 +1126,7 @@ Thread::GetStatus (Stream &strm, uint32_t start_frame, uint32_t num_frames, uint
const bool show_frame_info = true;
const uint32_t source_lines_before = 3;
const uint32_t source_lines_after = 3;
+ strm.IndentMore ();
num_frames_shown = GetStackFrameList ().GetStatus (strm,
start_frame,
num_frames,
@@ -1134,6 +1135,7 @@ Thread::GetStatus (Stream &strm, uint32_t start_frame, uint32_t num_frames, uint
source_lines_before,
source_lines_after);
strm.IndentLess();
+ strm.IndentLess();
}
return num_frames_shown;
}
OpenPOWER on IntegriCloud