From b3b8d9bfa7698d61d2831bfbe9fa41b487e03a45 Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Tue, 15 Nov 1994 08:13:05 +0000 Subject: * op50-rom.c, w89k-rom.c, monitor.c: Modify to use two variables to set remote load type and protocol. * rom68k-rom.c: Add to_stop in target_ops. --- gdb/monitor.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gdb/monitor.h') 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) -- cgit v1.2.1