vote up 4 vote down star
2

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?

flag

65% accept rate
This is actually a duplicate, see stackoverflow.com/questions/131439/… – Artelius Oct 7 at 11:42

5 Answers

vote up 4 vote down check

I found simple solution:

$gcore
usage:  gcore [-o filename] pid

It is distributed with gdb.

link|flag
That looks like the kind of program I've wanted for years! Much more reliable than kill -11 :-) Thanks Łukasz! – Arthur Reutenauer Oct 7 at 12:45
Happy to help. :) – Łukasz Lew Oct 7 at 14:08
vote up 2 vote down

What you're looking for is a "time travel debugger" which can travel back in time to the previous state of the program you're debugging.

There is one commercial product for Linux called UndoDB.

link|flag
Indeed, that's what I'm looking for. – Łukasz Lew Oct 7 at 12:27
It is free (as in beer) for non-commercial use :D I will give it a try. – Łukasz Lew Oct 7 at 12:30
vote up 1 vote down

I don't think this is exactly what you want (unless you want to pause the program while inspecting, or even modify the memory), but have a look at CryoPID.

link|flag
vote up 0 vote down

should be doable, at least /proc//smaps contains information of the process memory and the actual memory should be accessible via /dev/mem

I think you need to suspend the process to avoid corruption of the captured info, though.

link|flag
vote up 0 vote down

Even better!!! Gdb 7.0 have support for reversible debugging. And it was released yesterday, what a coincidence :D

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.