Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
7answers
3k views

How does reverse debugging work?

GDB has a new version out that supports reverse debug (see http://www.gnu.org/software/gdb/news/reversible.html). I got to wondering how that works. To get reverse debug to work it seems to me that ...
6
votes
8answers
1k views

Bidirectional (or reverse) debugging

Has anyone actually used a reversable debugger? The only product that Google turns up is UndoDB. It is for apparently for Linux only.
4
votes
3answers
913 views

Anyone tried reverse-debugging in gdb?

Has anyone tried using the new record/replay and reverse-debugging features in the newly released gdb-7.0? I am one of the gdb developer/maintainers, and I'm very eager for user feedback!
1
vote
1answer
73 views

How do I enable reverse debugging on a multi-threaded program?

I'm trying to use the reverse debugging features of gdb 7.3.1 on a multi-threaded project (using libevent), but I get the following error: (gdb) reverse-step Target multi-thread does not support this ...
1
vote
2answers
39 views

Modifying code during a debugging session.

Does anyone know of a Debugger or Programming Language that allows you to set a break point, and then modify the code and then execute the newly modified code. This is even more useful if the ...
1
vote
1answer
258 views

reverse-step multithread error

when I debug, I get the following message: [Thread debugging using libthread_db enabled] and the command reverse-step results with the following error message: (gdb) reverse-step Target ...
1
vote
2answers
220 views

Is it possible to use GDB's reverse debugging with Python? How?

I am trying to use GDB's reverse debugging with a Django application. I get it running in GDB, but I can't make it run backwards. I stopped my Django app with Ctrl-Z and then entered reverse-next at ...
1
vote
0answers
184 views

Why aren't we all reverse debugging? [closed]

Is it me, or is reverse debugging the most amazing feature ever that no-one seems to be using or building into all or debuggers for that matter? By Reverse debugging I mean a debugger that by some ...
1
vote
2answers
77 views

Debugger ignores me

Having code: Date::Date(const char* day, const char* month, const char* year):is_leap__(false) { my_day_ = lexical_cast<int>(day); my_month_ = ...
1
vote
2answers
551 views

gdb reverse debugging error

i started to try reverse debugging with gdb 7, followin the tutorial: http://www.sourceware.org/gdb/wiki/ProcessRecord/Tutorial and I thought, great! Then I started to debug a real program which ...