diff options
author | Greg Clayton <gclayton@apple.com> | 2013-04-04 20:40:35 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-04-04 20:40:35 +0000 |
commit | 85d0c57bb3286da33fa8eaa72d5b96aec0f97a94 (patch) | |
tree | 4cd29d7389a7e88cf29543926aa0dd6a483b6c24 /lldb/source/Core/Debugger.cpp | |
parent | b7ad58a0dfe2a3db177472dacadc474a608e9bc0 (diff) | |
download | bcm5719-llvm-85d0c57bb3286da33fa8eaa72d5b96aec0f97a94.tar.gz bcm5719-llvm-85d0c57bb3286da33fa8eaa72d5b96aec0f97a94.zip |
<rdar://problem/13449987>
Show thread name and dispatch queue by default in the thread display.
llvm-svn: 178790
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index f9d096118b5..f442aa6073d 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -102,6 +102,8 @@ g_language_enumerators[] = "{, ${frame.pc}}"\ MODULE_WITH_FUNC\ FILE_AND_LINE\ + "{, name = '${thread.name}}"\ + "{, queue = '${thread.queue}}"\ "{, stop reason = ${thread.stop-reason}}"\ "{\\nReturn value: ${thread.return-value}}"\ "\\n" |