pal.gdb 389 B

123456789101112131415161718192021222324252627
  1. handle SIGCONT pass noprint nostop
  2. handle SIGKILL pass print stop
  3. set disable-randomization off
  4. set detach-on-fork off
  5. set schedule-multiple on
  6. set follow-fork-mode child
  7. break pal_start
  8. command
  9. silent
  10. set scheduler-locking off
  11. continue
  12. end
  13. break thread_start
  14. command
  15. silent
  16. continue
  17. end
  18. catch vfork
  19. command
  20. silent
  21. set scheduler-locking on
  22. continue
  23. end