gdb core generated after C++ Application gets terminated

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ragur
    New Member
    • Apr 2013
    • 1

    gdb core generated after C++ Application gets terminated

    my C++ application gets crashed after throwing the gdb core
    "warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7fff79e54000"


    Core was generated by `./server'.
    Program terminated with signal 6, Aborted.
    #0 0x0000003b67230 265 in raise () from /lib64/libc.so.6


    How could the above issue fixed. i dont have any idea on this. can anyone help me out in this.
    please let me know whether it is memory issue or anyother...

    thanks in advance

    Regards,
    Ragu
  • Gobi Sakthivel
    New Member
    • Jan 2013
    • 26

    #2
    use gdb and get the back trace of the point where it is getting crashed actually, from that u can analyze the cause for your crash.

    To use gdb in linux
    =============== ====
    gdb ./Sample.bin, it will start gdb
    press 'r' to run the application inside gdb
    once the application gets crashed, give 'bt' in the terminal
    it will show the entire backtrace of the crash

    Comment

    Working...