summaryrefslogtreecommitdiff
path: root/gdb/monitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r--gdb/monitor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h
index 6e3758f358f..f3aff8cb466 100644
--- a/gdb/monitor.h
+++ b/gdb/monitor.h
@@ -47,6 +47,7 @@ struct monitor_ops {
char *cmd_end; /* optional command terminator */
struct target_ops *target; /* target operations */
char *loadtypes; /* the load types that are supported */
+ char *loadprotos; /* the load protocols that are supported */
char **regnames; /* array of register names in ascii */
};
@@ -54,6 +55,7 @@ extern struct monitor_ops *current_monitor;
#define PROTO_TYPE (current_monitor->type)
#define LOADTYPES (current_monitor->loadtypes)
+#define LOADPROTOS (current_monitor->loadprotos)
#define INIT_CMD (current_monitor->init)
#define GO_CMD (current_monitor->execute)
#define CONT_CMD (current_monitor->resume)