Advertisement
emin_int11

rooter

Nov 19th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. [root@APASRV5 tmp]# gdb searchd core-searchd-11-497-498-64707-1447938252
  2. GNU gdb (GDB) Red Hat Enterprise Linux (7.2-75.el6)
  3. Copyright (C) 2010 Free Software Foundation, Inc.
  4. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  5. This is free software: you are free to change and redistribute it.
  6. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  7. and "show warranty" for details.
  8. This GDB was configured as "x86_64-redhat-linux-gnu".
  9. For bug reporting instructions, please see:
  10. <http://www.gnu.org/software/gdb/bugs/>...
  11. Reading symbols from /usr/bin/searchd...Reading symbols from /usr/lib/debug/usr/bin/searchd.debug...done.
  12. done.
  13. [New Thread 64707]
  14. [New Thread 64708]
  15. [New Thread 64710]
  16. [New Thread 64714]
  17. [New Thread 64711]
  18. [New Thread 64709]
  19. [New Thread 64712]
  20. Reading symbols from /usr/lib64/mysql/libmysqlclient.so.18...done.
  21. .......
  22. Core was generated by `/usr/bin/searchd --config /etc/sphinx/sphinx.conf'.
  23. Program terminated with signal 11, Segmentation fault.
  24. #0 0x0000000000420c12 in CheckFlush () at searchd.cpp:18828
  25. 18828 if ( g_pFlush->m_bFlushing )
  26.  
  27. (gdb) disas
  28. Dump of assembler code for function CheckFlush():
  29. 0x0000000000420c00 <+0>: push rbp
  30. 0x0000000000420c01 <+1>: mov rbp,rsp
  31. 0x0000000000420c04 <+4>: push r12
  32. 0x0000000000420c06 <+6>: push rbx
  33. 0x0000000000420c07 <+7>: sub rsp,0x40
  34. 0x0000000000420c0b <+11>: mov rax,QWORD PTR [rip+0x593ace] # 0x9b46e0
  35. => 0x0000000000420c12 <+18>: mov edx,DWORD PTR [rax]
  36.  
  37. (gdb) info register
  38. rax 0x7f8435f48000 140205817626624
  39. rbx 0x0 0
  40.  
  41. (gdb) x/x $rax
  42. 0x7f8435f48000: Cannot access memory at address 0x7f8435f48000
  43.  
  44.  
  45.  
  46. Source
  47.  
  48. void CheckFlush ()
  49. {
  50. if ( g_pFlush->m_bFlushing ) <==== NULL
  51. return;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement