aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2011-07-26 02:39:59 +0000
committerJim Ingham <jingham@apple.com>2011-07-26 02:39:59 +0000
commit5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e (patch)
tree92af08469f64e275169555eba68f2a461a779b8b /lldb/source/Commands/CommandObjectThread.cpp
parentd600a0f87876842db56d0aa01e609db420345cee (diff)
downloadllvm-5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e.zip
llvm-5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e.tar.gz
llvm-5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e.tar.bz2
Indent the frames in the "thread.GetStatus" frame listing. Also put the same space after each thread listing for "thread backtrace all" as "thread backtrace 1 3 5"
llvm-svn: 136052
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index c8dd1a1..612e162 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