diff options
author | Yao Qi <yao@codesourcery.com> | 2012-06-24 07:28:10 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-06-24 07:28:10 +0000 |
commit | 972daa01e2ee0a5c41e1dd45a71ad398c9266af8 (patch) | |
tree | 7e71907c31591615f449be8d88c3c99fb068076d /gdb/valops.c | |
parent | 8d6e0714b7f1919bfe3720e8d0417708f00ae1ba (diff) | |
download | gdb-972daa01e2ee0a5c41e1dd45a71ad398c9266af8.zip gdb-972daa01e2ee0a5c41e1dd45a71ad398c9266af8.tar.gz gdb-972daa01e2ee0a5c41e1dd45a71ad398c9266af8.tar.bz2 |
gdb:
* corefile.c (write_memory_with_notification): New.
* gdbcore.h: Declare write_memory_with_notification.
* ada-lang.c (ada_value_assign): Replace 'write_memory' and
'observer_notify_memory_changed' with 'write_memory_with_notification'.
* valops.c (value_assign): Likewise.
* python/py-inferior.c (infpy_write_memory): Call
'write_memory_with_notification'.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index 5002272..97d889b 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -1299,9 +1299,7 @@ value_assign (struct value *toval, struct value *fromval) dest_buffer = value_contents (fromval); } - write_memory (changed_addr, dest_buffer, changed_len); - observer_notify_memory_changed (changed_addr, changed_len, - dest_buffer); + write_memory_with_notification (changed_addr, dest_buffer, changed_len); } break; |