Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
32k views

generate a core dump in linux

I have a process in linux that's getting a segmentation fault. How can I tell it to generate a core dump when it fails?
16
votes
7answers
10k 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 know if there is a ...
14
votes
5answers
2k views

How do I find what is using memory in a Python process in a production system?

My production system occasionally exhibits a memory leak I have not been able to reproduce in a development environment. I've used a Python memory profiler (specifically, Heapy) with some success in ...
11
votes
4answers
3k views

How can a C program produce a core dump of itself without terminating?

I want a C program to produce a core dump under certain circumstances. This is a program that runs in a production environment and isn't easily stopped and restarted to adjust other kinds of debugging ...
10
votes
7answers
24k views

Solaris Core dump analysis

I use pstack to analyze core dump files in Solaris How else can I analyze the core dump from solaris? What commands can be used to do this? What other information will be available from the dump?
9
votes
2answers
4k views

Where are core dumps written to in Mac OS X?

On Mac OS X, if I send SIGQUIT to my C program, it terminates, but there is no core dump file. Do you have to manually enable core dumps on Mac OS X (how?), or are they written to somewhere else ...
8
votes
8answers
1k views

Can you freeze a C/C++ process and continue it on a different host?

I was wondering if it is possible to generate a "core" file, copy if to another machine and then continue execution of the a core file on that machine? I have seen the gcore utility that will make a ...
7
votes
3answers
261 views

Is it possible to debug core file generated by a executable compiled without gdb flag?

Is it possible to debug core file generated by a executable compiled without gdb flag ? If yes, any pointers or tutorials on it ?
7
votes
7answers
2k views

How to debug a segmentation fault while the gdb stack trace is full of '??'?

My executable contains symbol table. But it seems that the stack trace is overwrited. How to get more information out of that core please? For instance, is there a way to inspect the heap ? See the ...
7
votes
3answers
2k views

How do I dump an entire Python process for later debugging inspection?

I have a Python application in a strange state. I don't want to do live debugging of the process. Can I dump it to a file and examine its state later? I know I've restored corefiles of C programs ...
6
votes
5answers
3k views

Core dump in Linux

I want to create a core dump whenever my process crashes. Currently I am following this approach: Build a special "debug" version of the program using "-g" of gcc/g++. Execute "ulimit -c unlimited" ...
5
votes
1answer
44 views

I have a core dump of an executable that was NOT built with debug symbols. Can I recover argv contents?

I have a core dump of an executable that was NOT built with debug symbols. Can I recover argv contents to see what the command line was? If I run gdb, I can see a backtrace, and I can navigate to ...
5
votes
1answer
424 views

Java has a 39G core dump

I'm running a weblogic server on solarix x86 - 64bit with the command line: -Xrs -Xms4096m -Xmx4096m -XX:MaxPermSize=256m -da ... so the max heap size should be 4G, however after a night, it ...
5
votes
4answers
286 views

Core dump equivalence for Java

So far I have learned about generating thread dump and heap dump using jstack and and jmap respectively. However, jstack thread dump contains only texts describing the stack on each thread. And ...
5
votes
3answers
13k 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 testserver ...
4
votes
3answers
166 views

How to limit the size of core dump file when generating it using GDB

I am running an embedded application on ARM9 board, where total flash size is 180MB only. I am able to run gdb, but when I do (gdb) generate-core-dump I get an error warning: Memory read failed for ...
4
votes
2answers
410 views

Core dumps in visual studio 2010 from Release build

I have build application using .NET 4.0, WinForms and DevExpress Winforms components. I have a bug that I cannot reproduce using simple "step by step" method. I am trying to use core dumps to debug ...
4
votes
4answers
246 views

Perl system call causes core dump but $? remains zero

I've got a Perl script (running on Xubuntu Lucid Lynx within VirtualBox) that wraps around several C/C++ binaries feeding the inputs of one into the others. One of the lines consists of generally: my ...
4
votes
1answer
167 views

Is there a way to open (arbitrary) core dumps with Xcode?

Looking for an alternative to command line gdb for examining core dumps on OSX - is there some way to get Xcode to open arbitrary core dumps w/ debugging symbols?
4
votes
1answer
1k views

OS X: Generate core dump without bringing down the process?

I know how to generate a core dump on OS X when a process crashes, but what I really need to do is attach to a process, generate a core dump, then resume that process (without killing it). A long ...
4
votes
2answers
1k views

Request java heap dump (core dump) from within application

I need a way to request a heap dump from within the application. Rationale: When I encounter a specific error condition, I'd like to dump heap, so that I can see what is holding on to the memory. ...
4
votes
5answers
481 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 possible under linux?
3
votes
1answer
58 views

What use is a truncated coredump?

ulimit -c can be used to set RLIMIT_CORE, and limit the maximum size of a coredump a process may generate. Any larger coredump will be truncated to this size. Can anything useful be done with such a ...
3
votes
3answers
103 views

Difference between segmentation fault and segmentation fault core dumped

consider the following code in C int n; scanf("%d",n) it gives the error Segmentation fault core dumped in GCC compiler in Linux Mandriva but the following code int *p=NULL; *P=8; gives only ...
3
votes
2answers
88 views

Recover from crash with a core dump

A C++ program crashed on FreeBSD 6.2 and OS was kind enough to create a core dump. Is it possible to amputate some stack frames, reset the instruction pointer and restart the process in gdb, and how?
3
votes
2answers
85 views

Core dump file is not generated

Every time, my application crash a core dump file is not generated. I remember that few days ago, on another server it was generated. I'm running the app using screen in bash like this: #!/bin/bash ...
3
votes
1answer
60 views

Generate a coredump from crashed process attached to ddd/dbx

I'm running dbx in ddd on Solaris. The attached process has crashed and I can examine the stack in the debugger. I want to save this core dump to disk for later. Google shows me several ways to ...
3
votes
5answers
95 views

What exactly is a core file and why is it useful?

As the title says: What exactly is a core file and why is it useful? I know when one is generated by UNIX, and I know how to check for one. I'm aware they're useful for debugging... but I'm not ...
3
votes
2answers
85 views

How to get info about crash from core file?

I have run a software and it crashed and left a core file. Now how I can read the info about crash by using core file?
3
votes
2answers
377 views

Selective core dump in Linux - How can I select the dumped sections?

I am looking for a way to select the sections and memory regions included in a core dump. My application's core dump size is about 30GB, most of it is in preallocated buffers which I don't even need ...
3
votes
5answers
731 views

How to debug Java OutOfMemory exceptions?

What is the best way to debug java.lang.OutOfMemoryError exceptions? When this happens to our application, our app server (Weblogic) generates a heap dump file. Should we use the heap dump file? ...
3
votes
4answers
1k views

Ruby/Glibc coredump (double free or corruption)

I am using a distributed continuous integration tool which I have written by myself in Ruby. It uses a fork of Mike Perham's "politics" for distribution of the tasks. The "politics" module is using ...
3
votes
1answer
1k views

How to enable full coredumps on OS X?

It looks that OS X (10.6) does not generates codedumps by default. Using the ulimit -c unlimited is not a good solution because ulimit does set the limit in an environment variable. This will work ...
3
votes
1answer
5k views

What is SEGV_MAPERR?

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

Mark data as sensitive in python

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 there a way to mark a value ...
3
votes
5answers
868 views

segmentation fault on Unix - possible stack corruption

i'm looking at a core from a process running in Unix. Usually I can work my around and root into the backtrace to try identify a memory issue. In this case, I'm not sure how to proceed. Firstly the ...
3
votes
2answers
3k views

How do I get symbol files for Java.exe/jvm.dll to analyse crash core dump files?

I have a Java application running on a Websphere application server. When I analyse the system crash core dump file, I get some info like this: ERROR: Symbol file could not be found. Defaulted to ...
3
votes
2answers
4k views

Using a stackdump from Cygwin executable

So I wrote buggy code that occasionally crash ... and creates a stackdump file. Using addr2line I can figure out how the program got to the crash point by decoding the addresses on by one. Is there ...
3
votes
6answers
318 views

Which wiki will let me dynamically create a page when its link is clicked?

For an application (*) I'm developing I need a mixture of dynamically generated and static pages. It would be cool to use a wiki such that once a dynamic page has been accessed for the first time it ...
2
votes
1answer
83 views

gdb memory usage for huge coredumps

When opening a coredump with gdb, will gdb try to load the full coredump into memory? I've found a coredump with a size of 35Gb on one of our staging systems. Our operating instructions call for the ...
2
votes
4answers
113 views

Best practices for recovering from a segmentation fault

I am working on a multithreaded process written in C++, and am considering modifying SIGSEGV handling using google-coredumper to keep the process alive when a segmentation fault occurs. However, this ...
2
votes
3answers
148 views

How to analayze a program's core dump file?

My program operates like this: exe -p param1 -i param2 -o param3 It crashed and generated a core dump file core.pid I want to analyze the core dump file by gdb ./exe -p param1 -i param2 -o ...
2
votes
1answer
961 views

Generate core dump in android

I'm developping a android's aplication using some shared libraries written by me and compiled with ndk-r5b. The application works, y and the calls to the libraries works too, but I detected some ...
2
votes
1answer
314 views

How can I do core dump analysis for a production application in UNIX/Linux?

I have come across an option to do core dump analysis by using GDB - it mentions that I need to build the executable with special command line parameters to include merging of symbols information. But ...
2
votes
1answer
175 views

linux kernel dump - at what time did that happen?

I have a kernel dump file. Supposing the file creation time is not reliable, can I find out the time of the panic by using crash? Thanks!
2
votes
5answers
1k views

How can I configure windows to generate a core dump from an application?

How can I configure windows to generate a core dump from an application? I'm using Win xp, and the application is build with Visual Studio 2003.
2
votes
2answers
973 views

Linux core dumps are too large!

Recently I've been noticing an increase in the size of the core dumps generated by my application. Initially, they were just around 5MB in size and contained around 5 stack frames, and now I have core ...
2
votes
1answer
431 views

per process configurable core dump directory

Is there a way to configure the directory where core dump files are placed for a specific process? I have a daemon process written in C++ for which I would like to configure the core dump directory. ...
2
votes
1answer
218 views

Core dump of a multithreaded program

i have regularly worked with single threaded programs. i never saw a multithreded program crashing since i havent worked on any. is there any difference between both the core dumps? is there any ...
2
votes
2answers
193 views

Is there any useful information in the memory map after a crash

I get a crash (i.e. abort) as follows and wanted to know if there's anything that I can get from the memory map information provided that could be useful? ___________ *** glibc detected *** free(): ...

1 2 3