Thread: I don't understand this gdb output...

  1. #1
    Registered User
    Join Date
    Mar 2012
    Posts
    110

    I don't understand this gdb output...

    When I run a program in gdb mode I get a report I don't understand.

    Code:
    Program received signal SIGABRT, Aborted.
    0x00007ffff74e8d95 in raise () from /lib64/libc.so.6
    If anyone could help me or give me some pointers...

  2. #2
    Registered User
    Join Date
    May 2012
    Posts
    1,066
    c++ - When does a process get SIGABRT (signal 6)? - Stack Overflow

    To find out where your program crashes use the "bt" command (short for "backtrace") which will show you all current stack frames.

    Bye, Andreas

  3. #3
    Registered User
    Join Date
    Mar 2012
    Posts
    110
    Thanks!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 9
    Last Post: 03-23-2013, 01:44 PM
  2. Cannot able to understand the output
    By raj.knd in forum C Programming
    Replies: 7
    Last Post: 12-07-2011, 06:29 AM
  3. i cant understand why i get such an output??
    By transgalactic2 in forum C Programming
    Replies: 5
    Last Post: 10-16-2008, 06:06 AM
  4. tricky output problem, dont understand
    By panfilero in forum C Programming
    Replies: 6
    Last Post: 11-12-2005, 12:30 AM
  5. cannot understand this output - atoi
    By aldajlo in forum C Programming
    Replies: 11
    Last Post: 10-02-2004, 11:48 AM