What's the LLDB equivalent of thread apply all bt
in GDB?
Asked
Active
Viewed 3,594 times
1 Answers
4
The corresponding command for LLDB is simply bt all
.
See https://lldb.llvm.org/use/map.html#examining-thread-state

Bruno Alexandre Rosa
- 550
- 6
- 20
-
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