3

What's the LLDB equivalent of thread apply all bt in GDB?

1 Answers1

4

The corresponding command for LLDB is simply bt all.

See https://lldb.llvm.org/use/map.html#examining-thread-state

  • This answer was copied from this comment https://stackoverflow.com/questions/18391808/how-do-i-get-the-backtrace-for-all-the-threads-in-gdb#comment67798212_18391808. I tested it and it works. – Bruno Alexandre Rosa Jun 03 '21 at 11:13