Find the answer to your Linux question:
Results 1 to 2 of 2
Hi, I have an application where multiple processes talk to each other.One of the process is crashing repeatedly via a SIG ABRT signal, I have tried to put in a ...
  1. #1
    Just Joined!
    Join Date
    Jan 2011
    Posts
    1

    Post SIGABRT crashing a process

    Hi,
    I have an application where multiple processes talk to each other.One of the process is crashing repeatedly via a SIG ABRT signal, I have tried to put in a gdb on that process and tried to figure out what the stack is at the point of the crash.the stack kinda looks like this at the time of SIG ABRT:
    Code:
    (gdb) bt
    #0  0xffffe402 in __kernel_vsyscall ()
    #1  0x006cbc10 in raise () from /lib/libc.so.6
    #2  0x006cd521 in abort () from /lib/libc.so.6
    #3  0x00701c5b in __libc_message () from /lib/libc.so.6
    #4  0x007098b6 in _int_free () from /lib/libc.so.6
    #5  0x0070ce00 in free () from /lib/libc.so.6
    #6  0x008e0691 in operator delete () from /usr/lib/libstdc++.so.6
    #7  0xf6a92d61 in SStringList::Pop () 
    #8  0xf6a92e37 in SStringList::Shift ()
    #9  0xf6bc5049 in getDbSvcLine 
    #10 0xf6bc537e in sc_gethostbyname_r 
    #11 0xf6b8c81a in snimGetIpAddrFromName
    #12 0xf6b8d3c3 in swcom_host2ip 
    #13 0xf6f965b8 in ldap_open_default_connection 
    #16 0xf6f9e4eb in ldap_simple_bind 
    #17 0xf6f9e54e in ldap_simple_bind_s 
    #18 0xf7212b72 in LdapConnection::initialize 
    #19 0xf7216752 in LdapConnectionManager::obtainLdapConnection 
    #21 0xf7214f5a in loadAccountFromDirectoryByMailboxID

    WOULD APPRECIATE ANY POINTER which can help in understanding or working around this SIGABRT.MY guess is something is going bad with the initialize method.

    Thanks
    DT
    Last edited by MikeTbob; 01-19-2011 at 11:36 AM. Reason: Added Code Tags

  2. #2
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,144
    Please continue this discussion here only. Your other two threads have been deleted because duplicates are against forum rules.
    http://www.linuxforums.org/forum/lin...ums-rules.html
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...