Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of code/tools/Debugging


Ignore:
Timestamp:
Oct 8, 2008, 7:39:45 PM (16 years ago)
Author:
scheusso
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/tools/Debugging

    v3 v4  
    2626 2. Run the program and wait for the breakpoint to get triggered
    2727 3. Type '''watch ''varname'''''
     28
     29=== Usefull Commands ===
     30Below is a list of usefull commands (type ''help command'' for more information)
     31|| x/wa || examine the memory at a certain address (e.g. determine class of an object) ||
     32|| print || print the value of a variable or function return value ||
     33|| break || set a breakpoint ||
     34|| watch || set a watchpoint ||
     35|| clear || delete all/specific breakpoints ||
     36|| delete || delete a breakpoint/watchpoint ||
     37
    2838== DDD ==
    2939DDD is a simple graphical debugger based on GDB.