diff options
author | John Gilmore <gnu@cygnus> | 1991-08-14 00:09:04 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-08-14 00:09:04 +0000 |
commit | 8f1f2a72bd2009b97fe1e2139072359e25068e3e (patch) | |
tree | 872b91b8b4698529171c95a6084ece23eaf4c0cc /gdb/remote-eb.c | |
parent | 5ac449d90c0fa68a04ad6bc9d6583c88ced5523c (diff) | |
download | gdb-8f1f2a72bd2009b97fe1e2139072359e25068e3e.zip gdb-8f1f2a72bd2009b97fe1e2139072359e25068e3e.tar.gz gdb-8f1f2a72bd2009b97fe1e2139072359e25068e3e.tar.bz2 |
* core.c, exec.c, inftarg.c, remote-eb.c, remote-nindy.c,
remote-vx.c, remote.c, target.c, target.h: Remove add_syms vector
from target_ops. It's the same on all targets. Add two section
pointers to target_ops.
Diffstat (limited to 'gdb/remote-eb.c')
-rw-r--r-- | gdb/remote-eb.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/remote-eb.c b/gdb/remote-eb.c index 110c7ee..7bc8842 100644 --- a/gdb/remote-eb.c +++ b/gdb/remote-eb.c @@ -40,7 +40,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "terminal.h" #include "target.h" -extern void add_syms_addr_command (); extern struct value *call_function_by_hand(); extern struct target_ops eb_ops; /* Forward declaration */ @@ -789,11 +788,12 @@ eb_prepare_to_store () /* FIXME! Merge these two. */ int -eb_xfer_inferior_memory (memaddr, myaddr, len, write) +eb_xfer_inferior_memory (memaddr, myaddr, len, write, target) CORE_ADDR memaddr; char *myaddr; int len; int write; + struct target_ops *target; /* ignored */ { if (write) return eb_write_inferior_memory (memaddr, myaddr, len); @@ -922,13 +922,14 @@ executable as it exists on the remote computer. For example,\n\ 0, 0, /* Breakpoints */ 0, 0, 0, 0, 0, /* Terminal handling */ 0, /* FIXME, kill */ - 0, add_syms_addr_command, /* load */ + 0, /* load */ call_function_by_hand, 0, /* lookup_symbol */ 0, /* create_inferior FIXME, eb_start here or something? */ 0, /* mourn_inferior FIXME */ process_stratum, 0, /* next */ 1, 1, 1, 1, 1, /* all mem, mem, stack, regs, exec */ + 0, 0, /* Section pointers */ OPS_MAGIC, /* Always the last thing */ }; |