Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(897)

Unified Diff: gdb/mi/mi-main.h

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/mi/mi-interp.c ('k') | gdb/mi/mi-main.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « gdb/mi/mi-interp.c ('k') | gdb/mi/mi-main.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698