]> Git Repo - binutils.git/blobdiff - gdb/monitor.h
* config/sparc/xm-sparc.h (NEW_SUN_CORE): Remove, never used.
[binutils.git] / gdb / monitor.h
index 85de892c2848814e10c1b5fd12bc61d952352f97..7fbf8cca86c3b0cb900d393b7b3a7cb02b4365d7 100644 (file)
@@ -1,8 +1,5 @@
 /* Remote debugging interface ROM monitors.
- *  Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
- *  Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
- *
- *  Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
+ *  Copyright 1990, 1991, 1992, 1996 Free Software Foundation, Inc.
  *  Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
  *
  * This file is part of GDB.
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
 
 #include "serial.h"
 
-struct rom_cmd_data {
-  char *cmd;                   /* command to send */
-  char *delim;                 /* the delimiter */
-  char *result;                        /* the result */
-};
-
 /* This structure describes the strings necessary to give small command
    sequences to the monitor, and parse the response.
 
@@ -72,7 +63,8 @@ struct memrw_cmd
 struct regrw_cmd
 {
   char *cmd;                   /* Command to send for reg read/write */
-  char *resp_delim;            /* String just prior to the desired value */
+  char *resp_delim;            /* String (actually a regexp if getmem) just
+                                  prior to the desired value */
   char *term;                  /* Terminating string to search for */
   char *term_cmd;              /* String to get out of sub-mode (if necessary) */
 };
@@ -116,17 +108,18 @@ struct monitor_ops
 
 /* Flag defintions */
 
-#define MO_CLR_BREAK_USES_ADDR 0x1 /* If set, then clear breakpoint command
-                                     uses address, otherwise it uses an index
-                                     returned by the monitor.  */
-#define MO_FILL_USES_ADDR 0x2  /* If set, then memory fill command uses
-                                  STARTADDR, ENDADDR+1, VALUE as args, else it
-                                  uses STARTADDR, LENGTH, VALUE as args. */
-#define MO_NEED_REGDUMP_AFTER_CONT 0x4 /* If set, then monitor doesn't auto-
-                                         matically supply register dump when
-                                         coming back after a continue.  */
-#define MO_GETMEM_NEEDS_RANGE 0x8 /* getmem needs start addr and end addr */
-#define MO_GETMEM_READ_SINGLE 0x10 /* getmem can only read one loc at a time */
+#define MO_CLR_BREAK_USES_ADDR 0x1     /* If set, then clear breakpoint command
+                                          uses address, otherwise it uses an index
+                                          returned by the monitor.  */
+#define MO_FILL_USES_ADDR 0x2          /* If set, then memory fill command uses
+                                          STARTADDR, ENDADDR+1, VALUE as args, else it
+                                          uses STARTADDR, LENGTH, VALUE as args. */
+#define MO_NEED_REGDUMP_AFTER_CONT 0x4 /* If set, then monitor doesn't auto-
+                                          matically supply register dump when
+                                          coming back after a continue.  */
+#define MO_GETMEM_NEEDS_RANGE 0x8      /* getmem needs start addr and end addr */
+#define MO_GETMEM_READ_SINGLE 0x10     /* getmem can only read one loc at a time */
+#define MO_HANDLE_NL 0x20              /* handle \r\n combinations */
 
 extern struct monitor_ops        *current_monitor;
 
@@ -169,6 +162,7 @@ extern struct monitor_ops        *current_monitor;
 #define REG_DELIM               (current_monitor->regset.delim)
 
 extern void monitor_open PARAMS ((char *args, struct monitor_ops *ops, int from_tty));
+extern void monitor_close PARAMS ((int quitting));
 extern char *monitor_supply_register PARAMS ((int regno, char *valstr));
 extern int monitor_expect PARAMS ((char *prompt, char *buf, int buflen));
 extern int monitor_expect_prompt PARAMS ((char *buf, int buflen));
This page took 0.025638 seconds and 4 git commands to generate.