Changes between Version 21 and Version 22 of Tools/Gdb Server


Ignore:
Timestamp:
Nov 27, 2009, 6:48:06 PM (14 years ago)
Author:
becoulet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Tools/Gdb Server

    v21 v22  
    162162 This kind of watch points can be added using the `SOCLIB_GDB_WATCH` environment variable too:
    163163{{{
    164 export SOCLIB_GDB_WATCH=0x12340000w:0x45870000rw
     164# export SOCLIB_GDB_WATCH=address[,size][r][w]:...
     165export SOCLIB_GDB_WATCH=0x44440000,32w                # write watch [0x44440000, 0x4444001f]
     166export SOCLIB_GDB_WATCH=0x12340000r:0x45870000rw      # read watch [0x12340000, 0x12340003], rw watch [0x45870000, 0x45870003]
    165167}}}
    166168 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.