diff options
author | Jim Ingham <jingham@apple.com> | 2011-07-26 02:39:59 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-07-26 02:39:59 +0000 |
commit | 5c4df7a4d6751d58f8e1752aea4b7187c00b1d5e (patch) | |
tree | 92af08469f64e275169555eba68f2a461a779b8b /lldb/source/Commands/CommandObjectThread.cpp | |
parent | d600a0f87876842db56d0aa01e609db420345cee (diff) | |
download | llvm-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.cpp | 4 |
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 |