OddThinking

A blog for odd things and odd thoughts.

Rational 1000: A Time-Travelling Debugger with No Future

This is one of a short series of nostalgic reminiscences about the Rational 1000.

Ada supports multi-tasking (multi-threading) and debugging that is hard. The Rational debugger did a reasonable job at helping you break into the right thread at the right time, and step through it, seeing where it went and what the values of the variables were.

The debugger had an optional feature – the ability to step-forward or backward through the code.

You could undo the last twenty steps to see where the thread had been, what values the variables had before they took the current variables.

It was a great feature… in theory.

However, in practice, the run-time environment ran so slowly as it stored all the interim state, that it was faster to restart the basic debugger (with the history option turned off) and just not step quite so far the second time.

Nice idea, though.


Comment

  1. Devel::ebug is a Perl module implementing an extensible debugger. It comes with various interfaces, including a local webserver that serves the debugger interface as a AJAX-enabled web app, in which you can step backwards in the code by hitting the browser back-button.

    You are not a computer nerd if you don’t find that slightly arousing.

Leave a comment

You must be logged in to post a comment.