Guest User

Untitled

a guest
Oct 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. (gdb) t 1
  2. [Switching to thread 1 (Thread 0x7f799659f700 (LWP 12275))]#0 0x00007f799cead4b0 in __tls_get_addr () from /lib64/ld-linux-x86-64.so.2
  3. (gdb) frame 0
  4. #0 0x00007f799cead4b0 in __tls_get_addr () from /lib64/ld-linux-x86-64.so.2
  5. (gdb) bt full
  6. #0 0x00007f799cead4b0 in __tls_get_addr () from /lib64/ld-linux-x86-64.so.2
  7. No symbol table info available.
  8. #1 0x00007f799c3d5ddc in __cxa_get_globals () from /usr/lib64/libstdc++.so.6
  9. No symbol table info available.
  10. #2 0x00007f799c3d6c56 in __cxa_rethrow () from /usr/lib64/libstdc++.so.6
  11. No symbol table info available.
  12. #3 0x0000000000413f57 in ExceptionHandler::SingleTonHandler::Handler ()
  13. at /fgw_dev/dev/source/BSG/include/bsg_exception.h:19
  14. No locals.
  15. #4 0x00007f799c3d6be6 in ?? () from /usr/lib64/libstdc++.so.6
  16. No symbol table info available.
  17. #5 0x00007f799c3d6c13 in std::terminate() () from /usr/lib64/libstdc++.so.6
  18. No symbol table info available.
  19. #6 0x00007f799c3d6c96 in __cxa_rethrow () from /usr/lib64/libstdc++.so.6
  20. No symbol table info available.
  21. #7 0x0000000000413f57 in ExceptionHandler::SingleTonHandler::Handler ()
  22. at /fgw_dev/dev/source/BSG/include/bsg_exception.h:19
  23. No locals.
  24. #8 0x00007f799c3d6be6 in ?? () from /usr/lib64/libstdc++.so.6
  25. No symbol table info available.
  26. #9 0x00007f799c3d6c13 in std::terminate() () from /usr/lib64/libstdc++.so.6
  27. No symbol table info available.
  28.  
  29.  
  30. Based on the core bt it looks like some run time exception has resulted into the the program termination as the exception was not caught since throw was invoked without argument.Hence the program got terminated and core dumped.But we donot know the root cause that resulted into this exception.Please let me know how to debug this core file as it is not loading the symbols for this particular thread.
  31.  
  32. (gdb) bt
  33. #0 0x00007f799cead4b0 in __tls_get_addr () from /lib64/ld-linux-x86-64.so.2
  34. #1 0x00007f799c3d5ddc in __cxa_get_globals () from /usr/lib64/libstdc++.so.6
  35. #2 0x00007f799c3d6c56 in __cxa_rethrow () from /usr/lib64/libstdc++.so.6
  36. #3 0x0000000000413f57 in ExceptionHandler::SingleTonHandler::Handler ()
  37. at /fgw_dev/dev/source/BSG/include/bsg_exception.h:19
  38. #4 0x00007f799c3d6be6 in ?? () from /usr/lib64/libstdc++.so.6
  39. #5 0x00007f799c3d6c13 in std::terminate() () from /usr/lib64/libstdc++.so.6
  40. #6 0x00007f799c3d6c96 in __cxa_rethrow () from /usr/lib64/libstdc++.so.6
  41. #7 0x0000000000413f57 in ExceptionHandler::SingleTonHandler::Handler ()
  42. at /fgw_dev/dev/source/BSG/include/bsg_exception.h:19
  43. #8 0x00007f799c3d6be6 in ?? () from /usr/lib64/libstdc++.so.6
  44. #9 0x00007f799c3d6c13 in std::terminate() () from /usr/lib64/libstdc++.so.6
  45. #10 0x00007f799c3d6c96 in __cxa_rethrow () from /usr/lib64/libstdc++.so.6
  46. #11 0x0000000000413f57 in ExceptionHandler::SingleTonHandler::Handler ()
Add Comment
Please, Sign In to add comment