diff options
author | Andrew Burgess <aburgess@broadcom.com> | 2013-10-18 16:25:14 +0000 |
---|---|---|
committer | Andrew Burgess <aburgess@broadcom.com> | 2013-10-18 16:25:14 +0000 |
commit | e8369a73b982f60326e89c38bd1a7e6bb7363beb (patch) | |
tree | 82dbafc553a62757810f5bf180f32ffd4f24cc95 /gdb/ChangeLog | |
parent | 776f04fafe124218f3602c2d9c598662c0f17aa9 (diff) | |
download | gdb-e8369a73b982f60326e89c38bd1a7e6bb7363beb.zip gdb-e8369a73b982f60326e89c38bd1a7e6bb7363beb.tar.gz gdb-e8369a73b982f60326e89c38bd1a7e6bb7363beb.tar.bz2 |
Hardware watchpoints turned off, inferior not yet started.
https://sourceware.org/ml/gdb-patches/2013-10/msg00477.html
gdb/ChangeLog
* breakpoint.c (update_watchpoint): If hardware watchpoints are
forced off, downgrade them to software watchpoints if possible,
and error out if not possible.
(watch_command_1): Move watchpoint type selection closer to
watchpoint creation, and extend the comments.
gdb/testsuite/ChangeLog
* gdb.base/watchpoints.exp: Add test for setting software
watchpoints of different types before starting the inferior.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c3e3d21..30829f5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2013-10-18 Andrew Burgess <aburgess@broadcom.com> + + * breakpoint.c (update_watchpoint): If hardware watchpoints are + forced off, downgrade them to software watchpoints if possible, + and error out if not possible. + (watch_command_1): Move watchpoint type selection closer to + watchpoint creation, and extend the comments. + 2013-10-18 Pedro Alves <palves@redhat.com> PR gdb/16062 |