From f414671c70d46d608d09905a6e6b48830c2741df Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Fri, 5 May 2017 23:38:26 +0000 Subject: [PATCH] Added "info threads", "thread 1" and "apropos". llvm-svn: 302323 --- lldb/www/lldb-gdb.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/lldb/www/lldb-gdb.html b/lldb/www/lldb-gdb.html index 60cd718..69179bd 100755 --- a/lldb/www/lldb-gdb.html +++ b/lldb/www/lldb-gdb.html @@ -772,6 +772,27 @@ + List the threads in your program. + + + (gdb) info threads
+ + + (lldb) thread list
+ + + + Select thread 1 as the default thread for subsequent commands. + + + (gdb) thread 1
+ + + (lldb) thread select 1
+ (lldb) t 1
+ + + Show the stack backtrace for the current thread. @@ -1250,6 +1271,16 @@ LLDB + Search command help for a keyword. + + + (gdb) apropos keyword
+ + + (lldb) apropos keyword
+ + + Echo text to the screen. -- 2.7.4