| Index: gdb/monitor.h
|
| diff --git a/gdb/monitor.h b/gdb/monitor.h
|
| index a1a856986b3dd39cfaf658c6721c6882753dc621..f66d1e7ae360d645c4f2625d4658daa64ae3f76a 100644
|
| --- a/gdb/monitor.h
|
| +++ b/gdb/monitor.h
|
| @@ -1,6 +1,5 @@
|
| /* Definitions for remote debugging interface for ROM monitors.
|
| - Copyright (C) 1990-1992, 1994-2000, 2007-2012 Free Software
|
| - Foundation, Inc.
|
| + Copyright (C) 1990-2013 Free Software Foundation, Inc.
|
| Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
|
|
|
| This file is part of GDB.
|
| @@ -103,8 +102,6 @@ struct monitor_ops
|
| from reg dump */
|
| void (*supply_register) (struct regcache *regcache, char *name,
|
| int namelen, char *val, int vallen);
|
| - void (*load_routine) (struct serial *desc, char *file,
|
| - int hashmark); /* Download routine */
|
| int (*dumpregs) (struct regcache *); /* Dump all registers */
|
| int (*continue_hook) (void); /* Emit the continue command */
|
| int (*wait_filter) (char *buf, /* Maybe contains registers */
|
| @@ -243,7 +240,7 @@ struct monitor_ops
|
| #define SREC_SIZE 160
|
|
|
| extern void monitor_open (char *args, struct monitor_ops *ops, int from_tty);
|
| -extern void monitor_close (int quitting);
|
| +extern void monitor_close (void);
|
| extern char *monitor_supply_register (struct regcache *regcache,
|
| int regno, char *valstr);
|
| extern int monitor_expect (char *prompt, char *buf, int buflen);
|
|
|