Gdb: Difference between revisions

No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 8: Line 8:
* Use <tt>next</tt> and <tt>nexti</tt> to move forward, skipping over new stack frames
* Use <tt>next</tt> and <tt>nexti</tt> to move forward, skipping over new stack frames
* Export <tt>LD_BIND_NOW=1</tt> to force early symbol binding. This eliminates annoying dl code when resolving the [[ELF|.plt section]]
* Export <tt>LD_BIND_NOW=1</tt> to force early symbol binding. This eliminates annoying dl code when resolving the [[ELF|.plt section]]
* Use <tt>set follow-fork-mode child</tt> to follow the child of <tt>fork</tt>/<tt>vfork</tt>
==Stacktraces==
* Stacktrace of all threads -- <tt>thread apply all bt</tt>