diff options
author | Steve Chamberlain <sac@cygnus> | 1996-01-13 00:21:55 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1996-01-13 00:21:55 +0000 |
commit | c84e500001e7cb3d349291d50c51f2b5cf3668db (patch) | |
tree | ace4772c77341fb1b4b518f613d1d4a8650b9754 /gdb/monitor.h | |
parent | 2afa4f215e5d861a0aabe3d00d7fd3dbe05379ef (diff) | |
download | binutils-gdb-c84e500001e7cb3d349291d50c51f2b5cf3668db.tar.gz |
* dsrec.c (load_srec): Remove unused variable.
monitor.c (monitor_expect): Don't expect a ^C to echo.
* serial.c (serial_open): Add parallel interface.
* sh3-rom.c (parallel, parallel_in_use): New.
(sh3_load): If parallel_in_use, download though the
parallel port.
(sh3_open): Open parallel port if specified.
(sh3_close): New function.
(_inititalize_sh3): Add sh3_close hook and documentation.
* monitor.c (monitor_close): Export.
* monitor.h (monitor_close): Add prototype.
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r-- | gdb/monitor.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h index d11e29f33ba..7fbf8cca86c 100644 --- a/gdb/monitor.h +++ b/gdb/monitor.h @@ -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. @@ -165,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)); |