0
votes
1answer
192 views

How is the ulimit -c unlimited command used and what does it do?

I'm helping to write a program right now, and on windows, the program works fine. On the mac, after changing the framework directory to the only suitable location, I'm getting this error: run: A ...
0
votes
0answers
44 views

Debugging COW (copy on write) memory after fork: Is it possible to dump **only the private anonymous memory** of a process?

Debugging COW (copy on write) memory after fork Question Is it possible to dump only the private anonymous memory of a process? Background I have a process where it reads and it initializes a ...
0
votes
2answers
164 views

Core dump to a pipe is failing

Tried this on MIPS platform: > uname -a Linux (none) 2.6.29 #2 Mon Jan 14 13:26:04 PST 2013 mips GNU/Linux > ulimit -c unlimited > which gzip /bin/gzip > echo "|/bin/gzip - > ...
1
vote
1answer
315 views

core dump , apport , no crash report

i'm using ubuntu 12.04 , and i've an application that when i run , exit with : ./ardrone_navigation Setting locale to en_GB.UTF-8 Errore di segmentazione (core dump creato) the problem is the same ...
2
votes
1answer
102 views

what 's the difference between the core dump generate by different linux version?

Now , I have two pc, The first one has gcc 4.3.2 linux suse 11.0 ,it generate a core dump ,but it has no source code of my program. The second ,has gcc 4.1 linux suse 10.1 and has the source code of ...
0
votes
1answer
75 views

How to generate core dump file for a Poco::ServerApplication started up using “--daemon” option?

I use the class ServerApplication of POCO library, and start up a program using "--daemon" option. I find that I could generate core dump file for a console running application, but could not do that ...
2
votes
1answer
2k views

How to read frames from a core dump (without GDB)?

I would like to access the frames stored in a core dump of a program that doesn't has debug symbols (I want to do this in C). When I open up the program and the core dump inside GDB I get a stack ...
1
vote
2answers
370 views

How to extract EBP and ESP from Core Dump?

I'm trying to analyze a core dump from a program without debug infos (Linux). The analyzing should be done automatically in C, so no GDB. As I've seen in GDB, it is possible to get the top of stack ...
5
votes
2answers
713 views

How to print the last received signal in GDB?

when loading a core dump into GDB the reason why it crashed automatically is displayed. For example Program terminated with signal 11, Segmentation fault. Is there any way to get the information ...
4
votes
1answer
528 views

dump_bt not working when trying to analyse apache core dumps

I am trying to use dump_bt to analyse an apache core dump as we are getting segmentation faults after moving servers. The info I got on how to do it is at the following link: ...
1
vote
1answer
201 views

Linux(MIPS): Temporarily “change” register contents when viewing core dump

Some of the threads in my app are sat in optimized functions and when I debug the app, gdb can't backtrace from those functions. But I've looked at the assembler and can partially unwind the stack by ...
3
votes
1answer
154 views

Linux: Snoop a signal without trashing the registers for the subsequent core dump?

When I get coredump-causing signal, I want to run my own handler to copy the siginfo_t and ucontext_t structures to global variables, so that they may be accessed in the core dump. Currently at the ...
0
votes
1answer
122 views

AIX Core dump not creating when running under SRC

If i run the C program it is creating a core dump file. but the same application if i run it under src, it is not creating core dump. I tried setting ulimit but still same problem. What could be ...
2
votes
3answers
81 views

Is it possible to cause multi processes hibernate (core dump?)?

I have a software (c++) that runs few processes (each process is a major system itself). The processes have communication with each other via xml-rpc or boost asio I want to be able to freeze or ...
0
votes
1answer
280 views

How to make nscd generate core dump files?

nscd service crashed without a core dump file. ulimit -c is unlimited. Someone says that that's because nscd use "setuid" when the "server-user" is set in /etc/nscd.conf. Then I added a "#" to ...
21
votes
4answers
26k views

core dumped - but core file is not in current directory?

While running a C program, It says "(core dumped)" but I can't see any files under current path. I have set and verified the ulimit: ulimit -c unlimited ulimit -a I also tried to find file named ...
-1
votes
4answers
261 views

Memory Error in C++

I have a high memory requirement in my code and this statement is repeated a lot of times: Node** x; x = new Node*[11]; It fails at this allocation. I figured out this line by throwing output to ...
0
votes
3answers
3k views

Print to log a core dump file stack, C++ over windows?

When my process crashes, how can I print to log a core dump file stack, C++ over windows? I know that in Unix there is a way to do it using some signal handlers but never did it myself. How can I do ...
17
votes
9answers
51k views

Tool for analyzing java core dump

If i make java core dump with gcore then what is the best tool to analyze it? I need to be able make jmap, jstack, jstat etc and also i need to see values of all variables. Something that can take ...