summaryrefslogtreecommitdiff
path: root/gdb/monitor.h
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1995-12-21 17:06:04 +0000
committerMichael Meissner <gnu@the-meissners.org>1995-12-21 17:06:04 +0000
commit721ccd808fb6dfc6ec45513f75d15654b3d380ff (patch)
treeb823d6eb8dc67c178ae7a328a215419a65f0f9ba /gdb/monitor.h
parent2dd30c722bd69b3086430017eb2b8c50956c0745 (diff)
downloadbinutils-gdb-721ccd808fb6dfc6ec45513f75d15654b3d380ff.tar.gz
Make ppcbug work
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r--gdb/monitor.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h
index 84ad95eaee5..d11e29f33ba 100644
--- a/gdb/monitor.h
+++ b/gdb/monitor.h
@@ -111,17 +111,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;