Index: gdb/mi/mi-main.h |
diff --git a/gdb/mi/mi-main.h b/gdb/mi/mi-main.h |
index beac2cde97a6b52d36de5bf6487aa594a265a599..d75526ac2e9088ab14354d6fd6ebfa9917397897 100644 |
--- a/gdb/mi/mi-main.h |
+++ b/gdb/mi/mi-main.h |
@@ -1,6 +1,6 @@ |
/* MI Internal Functions for GDB, the GNU debugger. |
- Copyright (C) 2003, 2007-2012 Free Software Foundation, Inc. |
+ Copyright (C) 2003-2013 Free Software Foundation, Inc. |
This file is part of GDB. |
@@ -32,7 +32,19 @@ extern char *current_token; |
extern int running_result_record_printed; |
extern int mi_proceeded; |
-extern int mi_suppress_breakpoint_notifications; |
+ |
+struct mi_suppress_notification |
+{ |
+ /* Breakpoint notification suppressed? */ |
+ int breakpoint; |
+ /* Command param changed notification suppressed? */ |
+ int cmd_param_changed; |
+ /* Traceframe changed notification suppressed? */ |
+ int traceframe; |
+ /* Memory changed notification suppressed? */ |
+ int memory; |
+}; |
+extern struct mi_suppress_notification mi_suppress_notification; |
#endif |