Changes between Version 21 and Version 22 of Tools/Gdb Server
- Timestamp:
- Nov 27, 2009, 6:48:06 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tools/Gdb Server
v21 v22 162 162 This kind of watch points can be added using the `SOCLIB_GDB_WATCH` environment variable too: 163 163 {{{ 164 export SOCLIB_GDB_WATCH=0x12340000w:0x45870000rw 164 # export SOCLIB_GDB_WATCH=address[,size][r][w]:... 165 export SOCLIB_GDB_WATCH=0x44440000,32w # write watch [0x44440000, 0x4444001f] 166 export SOCLIB_GDB_WATCH=0x12340000r:0x45870000rw # read watch [0x12340000, 0x12340003], rw watch [0x45870000, 0x45870003] 165 167 }}} 166 168 The `W` flag can be added to the the `SOCLIB_GDB` variable to just repport watchpoint hit on stderr and avoid stoping the simulation to be less intrusive.