How to get backtracking for all threads in GDB?

Does GDB have a command equivalent to the WinDbg "! Process 0 7" command?

I want to extract all streams from a dump file along with their traces back in GDB. Thread Information does not display stack traces. So is there a team that does?

+122
debugging multithreading gdb backtrace
Aug 22 '13 at 22:27
source share
2 answers

Usually, backtracking is used to get the stack of the current thread, but if you need to get the stack trace of all threads, use the following command.

thread apply all bt 
+206
Apr 10 '14 at 6:36
source share

Is there a team that does?

 thread apply all where 
+51
Aug 22 '13 at 22:46
source share



All Articles