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/ada-lang.c | |
parent | 8d6e0714b7f1919bfe3720e8d0417708f00ae1ba (diff) | |
download | binutils-gdb-972daa01e2ee0a5c41e1dd45a71ad398c9266af8.tar.gz |
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/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 6f654720645..7afcef8d4a8 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -2534,8 +2534,7 @@ ada_value_assign (struct value *toval, struct value *fromval) else move_bits (buffer, value_bitpos (toval), value_contents (fromval), 0, bits, 0); - write_memory (to_addr, buffer, len); - observer_notify_memory_changed (to_addr, len, buffer); + write_memory_with_notification (to_addr, buffer, len); val = value_copy (toval); memcpy (value_contents_raw (val), value_contents (fromval), |