Bug 541880 - With ABRT installed core files aren't created when my program aborts
Summary: With ABRT installed core files aren't created when my program aborts
Keywords:
Status: CLOSED DUPLICATE of bug 541707
Alias: None
Product: Fedora
Classification: Fedora
Component: abrt
Version: 12
Hardware: All
OS: Linux
low
medium
Target Milestone: ---
Assignee: Jiri Moskovcak
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2009-11-27 11:57 UTC by Chris January
Modified: 2015-02-01 22:50 UTC (History)
8 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2009-11-27 12:12:28 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)
Fix which adds MakeCompatCore = yes/no directive to Plugins/CCpp.conf (13.14 KB, patch)
2009-11-27 15:05 UTC, Denys Vlasenko
no flags Details | Diff

Description Chris January 2009-11-27 11:57:04 UTC
Description of problem:

I have a program that aborts with SIGABRT. I am changing the ulimit for core files like so:
ulimit -c unlimited
then running my program. The program aborts, but no core file is created.

How reproducible:

Every time.

Steps to Reproduce:
bash-4.0$ cat abort.c
#include <sys/signal.h>

int main(void)
{
        raise(SIGABRT);
        return 0;
}
bash-4.0$ gcc abort.c -o abort -g
bash-4.0$ ulimit -c unlimited
bash-4.0$ ./abort
Aborted (core dumped)
bash-4.0$ ls core*
ls: cannot access core*: No such file or directory
  
Actual results:

bash-4.0$ ls core*
ls: cannot access core*: No such file or directory

Expected results:

bash-4.0$ ls core*
core

Comment 1 Michal Nowak 2009-11-27 12:12:28 UTC

*** This bug has been marked as a duplicate of bug 541707 ***

Comment 2 Denys Vlasenko 2009-11-27 15:05:16 UTC
Created attachment 374234 [details]
Fix which adds MakeCompatCore = yes/no directive to Plugins/CCpp.conf


Note You need to log in before you can comment on or make changes to this bug.