Program terminated with signal 10

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wnbill
    New Member
    • Mar 2007
    • 1

    Program terminated with signal 10

    hie

    I am running a batch developed in C on unix and its core-dumping. Upon opening the core with gdb its giving me

    Program terminated with signal 10, Bus Error.
    #0 0xfe1ef3ec in ?? ()

    Upon examining the frame 0, i am not getting anything. May someone assist.
  • sicarie
    Recognized Expert Specialist
    • Nov 2006
    • 4677

    #2
    Originally posted by wnbill
    hie

    I am running a batch developed in C on unix and its core-dumping. Upon opening the core with gdb its giving me

    Program terminated with signal 10, Bus Error.
    #0 0xfe1ef3ec in ?? ()

    Upon examining the frame 0, i am not getting anything. May someone assist.
    That really depends - can you post the last 4 or 5 lines of gdb before the error?

    Comment

    • Varun Gupta
      New Member
      • Feb 2007
      • 13

      #3
      Originally posted by sicarie
      That really depends - can you post the last 4 or 5 lines of gdb before the error?
      hey

      "Coredump" error generally occures when address is not resolved.
      for example when in scanf( ) in C, you don't put & before the variable while reading the value from console, then it terminates abnormally and gives core dump error.
      Similarly might be something wrong in C code. Do checkit again.
      Otherwise while creating batch in might have give something unacceptable.
      Please send the detailed error whatever you are getting. !!

      Comment

      Working...