Advertisement
funny_falcon

dynbacktrace.gdb

Jul 11th, 2017
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GDB 0.22 KB | None | 0 0
  1. set pagination off
  2. set confirm off
  3. handle all nostop noprint
  4. set $i = 0
  5. define contorquit
  6.   set $i = $i + 1
  7.   if $i < 15
  8.     continue
  9.   else
  10.     quit
  11.   end
  12. end
  13.  
  14. break kill
  15. commands
  16. bt 15
  17. contorquit
  18. end
  19. continue
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement