Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. Reading symbols from /usr/bin/php...
  2. Reading symbols from /usr/lib/debug/usr/bin/php5...done.
  3. (no debugging symbols found)...done.
  4.  
  5. $ cat /tmp/test.php
  6. <?php sleep(10); ?>
  7. $ gdb php
  8. ...
  9. (gdb) run /tmp/test.php
  10. ...
  11. ^C
  12. Program received signal SIGINT, Interrupt.
  13. 0xf7fe0430 in __kernel_vsyscall ()
  14. (gdb) bt
  15. #0 0xf7fe0430 in __kernel_vsyscall ()
  16. #1 0xf7a13b50 in nanosleep () from /lib/tls/i686/cmov/libc.so.6
  17. #2 0xf7a13991 in sleep () from /lib/tls/i686/cmov/libc.so.6
  18. #3 0x081fbfc1 in zif_sleep (ht=1, return_value=0x866d204,
  19. return_value_ptr=0x0, this_ptr=0x0, return_value_used=0)
  20. at /build/buildd/php5-5.2.10.dfsg.1/ext/standard/basic_functions.c:4787
  21. #4 0x082f9616 in zend_do_fcall_common_helper_SPEC (execute_data=0xffffafbc)
  22. at /build/buildd/php5-5.2.10.dfsg.1/Zend/zend_vm_execute.h:200
  23. #5 0x082f511b in execute (op_array=0x866d7f0)
  24. at /build/buildd/php5-5.2.10.dfsg.1/Zend/zend_vm_execute.h:92
  25. #6 0x082cf414 in zend_execute_scripts (type=8, retval=0x0, file_count=3)
  26. at /build/buildd/php5-5.2.10.dfsg.1/Zend/zend.c:1215
  27. #7 0x08284166 in php_execute_script (primary_file=0xffffd454)
  28. at /build/buildd/php5-5.2.10.dfsg.1/main/main.c:2046
  29. #8 0x08352c38 in main (argc=2, argv=0xffffd554)
  30. at /build/buildd/php5-5.2.10.dfsg.1/sapi/cli/php_cli.c:1170
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement