diff options
author | Mark Alexander <marka@cygnus> | 1998-01-05 23:41:46 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1998-01-05 23:41:46 +0000 |
commit | 352f9e9dc742f6c2bc0f4005c1a3d64c6095863e (patch) | |
tree | ca8266514fbb0edc2a1afb66353894dcb75c2f5b /gdb/monitor.h | |
parent | 7d645eb277ab66b694438d773cfe2b2ea12ddff9 (diff) | |
download | gdb-352f9e9dc742f6c2bc0f4005c1a3d64c6095863e.zip gdb-352f9e9dc742f6c2bc0f4005c1a3d64c6095863e.tar.gz gdb-352f9e9dc742f6c2bc0f4005c1a3d64c6095863e.tar.bz2 |
* monitor.h (MO_PRINT_PROGRAM_OUTPUT): Define.
* monitor.c (monitor_wait): Echo program output.
* dve3900-rom.c (_initialize_r3900_rom): Remove MO_HANDLE_NL flag,
add MO_PRINT_PROGRAM_OUTPUT flag.
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r-- | gdb/monitor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h index f6c22c6..14d99c9 100644 --- a/gdb/monitor.h +++ b/gdb/monitor.h @@ -201,6 +201,10 @@ struct monitor_ops #define MO_ADDR_BITS_REMOVE 0x100000 +/* If set, then display target program output if prefixed by ^O. */ + +#define MO_PRINT_PROGRAM_OUTPUT 0x200000 + #define SREC_SIZE 160 extern void monitor_open PARAMS ((char *args, struct monitor_ops *ops, |