Guest User

Untitled

a guest
Feb 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Once frozen, attaching gdb to the child process shows where it is stuck:
  4. # 0x00007f0f303ecf96 in futex_abstimed_wait_cancelable (private=0, abstime=0x0, expected=0, futex_word=0x1cf29d0)
  5. # at ../sysdeps/unix/sysv/linux/futex-internal.h:205
  6.  
  7. set -o errexit
  8.  
  9. for i in $(seq 500)
  10. do
  11. clear
  12. echo "If this number freezes, you've successfully reproduced the issue:" $i
  13. python3 test.py
  14. done
Add Comment
Please, Sign In to add comment