Changes between Version 3 and Version 4 of code/tools/Debugging
- Timestamp:
- Oct 8, 2008, 7:39:45 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/tools/Debugging
v3 v4 26 26 2. Run the program and wait for the breakpoint to get triggered 27 27 3. Type '''watch ''varname''''' 28 29 === Usefull Commands === 30 Below 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 28 38 == DDD == 29 39 DDD is a simple graphical debugger based on GDB.