How do these debugging programs work?
Debugging Programs
Started by
Guest_sn17_*
, Aug 08 2006 10:40 AM
3 replies to this topic
#1
Guest_sn17_*
Posted 08 August 2006 - 10:40 AM
Guest_sn17_*
|
|
|
#2
Guest_Rob_*
Posted 09 August 2006 - 02:00 PM
Guest_Rob_*
What debugging programs? Can you be more specific?
#3
Posted 12 August 2006 - 08:26 AM
Most debuggin programs are built into your IDE if you use an IDE. There are others that detect memory leaks and other things like that.
#4
Posted 13 August 2006 - 09:39 AM
Looking at the GNU compiler and debugger, I believe what happens is that the compiler creates a version of the code that retains information about the original source code. Then the debugger runs the code while observing all memory. This can be done either with application hooks, or by running it in a virtual environment and passing calls on to the system.


Sign In
Create Account

Back to top










