* target.h (target_watchpoint_addr_within_range): Document macro.

This commit is contained in:
Maciej W. Rozycki 2012-02-24 23:46:48 +00:00
parent 818f62b7c5
commit 9b3e86b1b6
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
* target.h (target_watchpoint_addr_within_range): Document macro.
2012-02-24 Pedro Alves <palves@redhat.com>
* stack.c (set_last_displayed_sal): Issue internal_error instead

View File

@ -1493,6 +1493,8 @@ extern int target_ranged_break_num_registers (void);
#define target_stopped_data_address(target, addr_p) \
(*target.to_stopped_data_address) (target, addr_p)
/* Return non-zero if ADDR is within the range of a watchpoint spanning
LENGTH bytes beginning at START. */
#define target_watchpoint_addr_within_range(target, addr, start, length) \
(*target.to_watchpoint_addr_within_range) (target, addr, start, length)