diff options
author | Tom Tromey <tromey@redhat.com> | 2010-08-16 19:19:22 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-08-16 19:19:22 +0000 |
commit | 06a64a0b786b2a3b81e8caced730c43939a78684 (patch) | |
tree | 22ac5c9f0c04439265692f65f990b3de634fd685 /gdb/value.c | |
parent | 70ebf4ed1a2872d940df413696837481871a5af9 (diff) | |
download | gdb-06a64a0b786b2a3b81e8caced730c43939a78684.zip gdb-06a64a0b786b2a3b81e8caced730c43939a78684.tar.gz gdb-06a64a0b786b2a3b81e8caced730c43939a78684.tar.bz2 |
gdb
* value.c (release_value): Clear 'next' pointer.
* breakpoint.c (watch_command_1): Add 'just_location' argument.
(watch_command_wrapper): Update.
(watch_maybe_just_location): New function.
(watch_command): Update.
(rwatch_command_wrapper): Update.
(rwatch_command): Update.
(awatch_command_wrapper): Update.
(awatch_command): Update.
(check_for_argument): New function.
(_initialize_breakpoint): Update help text.
gdb/testsuite
* gdb.base/help.exp: Update.
* gdb.base/watchpoint.exp (test_watchpoint_and_breakpoint): Delete
watchpoint.
(test_watch_location): New proc.
(test_watchpoint_in_big_blob): Delete watchpoint.
* gdb.base/watchpoint.c (func5): New function.
(main): Call it.
gdb/doc
* gdb.texinfo (Set Watchpoints): Document -location option.
Diffstat (limited to 'gdb/value.c')
-rw-r--r-- | gdb/value.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/value.c b/gdb/value.c index b65ba32..d1c37e3 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -747,6 +747,7 @@ release_value (struct value *val) if (all_values == val) { all_values = val->next; + val->next = NULL; return; } @@ -755,6 +756,7 @@ release_value (struct value *val) if (v->next == val) { v->next = val->next; + val->next = NULL; break; } } |