tdbg

Quick and dirty way to trace code execution and count associated hits.

Use-case

You're debugging a piece of code and you want to determine if a piece of code is hit, and if so, how many times it is hit.

tdbg provides the tdbg! macro to associate an identifier to a code location. Using the macro will send a message to the tdbg server (standalone binary), that will report every hit and the associated number of time it has been hit.

Simply fire up the server, insert tdbg! macros and you're done.

Philosophy