]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* target.h (target_watchpoint_addr_within_range): Document macro.
authorMaciej W. Rozycki <macro@linux-mips.org>
Fri, 24 Feb 2012 23:46:48 +0000 (23:46 +0000)
committerMaciej W. Rozycki <macro@linux-mips.org>
Fri, 24 Feb 2012 23:46:48 +0000 (23:46 +0000)
gdb/ChangeLog
gdb/target.h

index 9f290184ec4d1ccde113678a9119682dbca7f866..9750d3b74f5b7214a35b9f1efd7909fb5dc56e63 100644 (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
index d2b505636d2075cf1b9ac121c75d09847865288b..e786817b330043af0325d06b0a7071b475355499 100644 (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)