Tagged Questions

0
votes
1answer
94 views

how to get the pid of a process which has sent a SIGABRT signal to another process which has exited dumping core

how to get the pid of a process which has sent a SIGABRT signal to another process which has exited dumping core
1
vote
1answer
29 views

Is it possible to debug core dumps when using Java JNI?

My application is mostly Java but, for certain calculations, uses a C++ library. Our environment is Java 1.6 running on RedHat 3 (soon to be RedHat 5). My problem is that the C++ …
0
votes
2answers
71 views

core dump in a multithread program

Hi, i was trying to write a simple multithreaded program. It is dumping the core. I have my function that is called when a thread is created below: void *BusyWork(void *t) { in …
0
votes
1answer
25 views

What are some ways to debug a core dump?

I'm using an ASIC simulator (vcs) that takes a bunch of different languages (Verilog, VHDL, Vera, C and Tcl in our case) and compiles them all into a C executable. Which is all gr …
1
vote
1answer
31 views

Core dump file name truncated

Given the configuration in /proc/sys/kernel/core_pattern set to /cores/core.%e.%p, core dumps are named according to pattern, however for processes running executables with long na …
1
vote
1answer
70 views

How do I have my program’s core dump saved to a file upon a crash?

I'm using Bash. I used ulimit -c unlimited but the program still doesn't generate a core file. It may be due to the GUI debugger kicking in. I get the option to save the crash info …
4
votes
5answers
91 views

Is it possible to peridocally save state of the program through a core dump?

I just want to dump core without stopping the program. This would be essentialy serializing a whole state of the program. A very convenient thing for debugging later. Is it possib …
1
vote
1answer
178 views

Core dump for process spawned from Java

Hi, My Java (Eclipse) application is spawning a child process, monitoring its stdout stream and exit value. When the child process is crashing with SIGABRT, there is no core dump …
1
vote
5answers
174 views

Debugginng a daemon that terminates unexpectedly

I am writing a daemon in c on linux. It traps signals SIGHUP, SIGTERM, SIGINT, and SIGQUIT, logs them using syslog and quits. If it receives SIGSEGV it core dumps. When these occur …
0
votes
1answer
41 views

Handling COR dump issue with purify

Hi all, I an instrumenting a C++application using IBM purify and I get the issue COR dump and my program aborts although when run from terminal it runs fine. Can anyone tell me wh …
0
votes
1answer
241 views

What is SEGV_MAPERR ?

What is SEGV_MAPERR, why does it always come up with SIGSEGV
3
votes
3answers
154 views

Mark data as sensitive in python

Hi, I need to store a user's password for a short period of time in memory. How can I do so yet not have such information accidentally disclosed in coredumps or tracebacks? Is the …
5
votes
7answers
927 views

How to programatically cause a core dump in C/C++

I would like to force a core dump at a specific location in my C++ application. I know I can do it by doing something like: int * crash = NULL; *crash = 1; But I would like to …
0
votes
5answers
687 views

Why core dump file is generated ?

I am working on a linux project for which i ve written a makefile. Sometimes when i run my code a core dump file is generated. The filename is of the form core.* . And it is occupy …
2
votes
3answers
1k views

Creating core dumps on Linux

Duplicate: generate a core dump in linux I am trying to create a core dump in my "Fedora Core release 3 (Heidelberg)". [root@testserver test_core_dump]# uname -a Linux test …

1 2 next
15 30 50 per page