diff options
author | Yao Qi <yao@codesourcery.com> | 2012-10-17 00:53:24 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-10-17 00:53:24 +0000 |
commit | 8de0566d7a01e024fa43e7e1bde309c718856695 (patch) | |
tree | 15e8946c06a60231b27f2ba37926c8ce64b01dfe /gdb/mi/mi-main.h | |
parent | b1fecbf125225e49517549d561fe5f480ee5055f (diff) | |
download | binutils-gdb-8de0566d7a01e024fa43e7e1bde309c718856695.tar.gz |
gdb:
* breakpoint.c (invalidate_bp_value_on_memory_change): Add one
more parameter 'inferior'.
* corefile.c (write_memory_with_notification): Caller update.
* mi/mi-cmd-var.c: Include "mi-main.h".
(mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
to 1 and restore it later.
* mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
and "data-write-memory-bytes.
* mi/mi-interp.c: Include objfiles.h.
(mi_interpreter_init): Call observer_attach_memory_changed.
(mi_memory_changed): New.
* mi/mi-main.h (struct mi_suppress_notification) <memory>:
New field.
* NEWS: Mention new MI notification "memory-changed".
gdb/doc:
* observer.texi (GDB Observers): Update observer
'memory_changed'.
* gdb.texinfo (GDB/MI Async Records): Document for
"memory-changed" notification.
gdb/testsuite:
* gdb.mi/mi-memory-changed.exp: New.
Diffstat (limited to 'gdb/mi/mi-main.h')
-rw-r--r-- | gdb/mi/mi-main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/mi/mi-main.h b/gdb/mi/mi-main.h index aad7eebce18..a815fbe1422 100644 --- a/gdb/mi/mi-main.h +++ b/gdb/mi/mi-main.h @@ -41,6 +41,8 @@ struct mi_suppress_notification int cmd_param_changed; /* Traceframe changed notification suppressed? */ int traceframe; + /* Memory changed notification suppressed? */ + int memory; }; extern struct mi_suppress_notification mi_suppress_notification; |