| 312 | #define WD_MEMCACHE_SIZE 8*1024 |
| 313 | |
| 314 | struct WdMemoryBreakpointBind |
| 315 | { |
| 316 | WdBreakpoint* mBreakpoint; |
| 317 | addr_target mAddress; |
| 318 | int mOfs; |
| 319 | int mByteCount; |
| 320 | |
| 321 | WdMemoryBreakpointBind() |
| 322 | { |
| 323 | mAddress = 0; |
| 324 | mBreakpoint = NULL; |
| 325 | mOfs = 0; |
| 326 | mByteCount = 0; |
| 327 | } |
| 328 | }; |
| 329 | |
| 330 | struct DbgPendingDebugInfoLoad |
| 331 | { |
no outgoing calls
no test coverage detected