diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1994-08-10 23:06:39 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1994-08-10 23:06:39 +0000 |
commit | 1311f8d1a5ad54f0b26f318dec99ec91a37d7b1f (patch) | |
tree | 746e80a2cd88f543972a539bbee912242c811b8b /gdb | |
parent | ced992e4bd12d732e3d341e2d4424ef44b88d707 (diff) | |
download | gdb-1311f8d1a5ad54f0b26f318dec99ec91a37d7b1f.zip gdb-1311f8d1a5ad54f0b26f318dec99ec91a37d7b1f.tar.gz gdb-1311f8d1a5ad54f0b26f318dec99ec91a37d7b1f.tar.bz2 |
(gdbsim_ops): Set `to_insert_breakpoint' and `to_remove_breakpoint' fields.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/remote-sim.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7ff1480..12723b7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 10 15:57:43 1994 Doug Evans (dje@canuck.cygnus.com) + + * remote-sim.c (gdbsim_ops): Set `to_insert_breakpoint' and + `to_remove_breakpoint' fields. + Wed Aug 10 15:46:03 1994 Jim Kingdon (kingdon@lioth.cygnus.com) * infcmd.c (run_command): Remove comment suggesting using diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 2a3e527..8b3c4d3 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -409,7 +409,8 @@ struct target_ops gdbsim_ops = gdbsim_prepare_to_store, gdbsim_xfer_inferior_memory, gdbsim_files_info, - 0, 0, /* Breakpoints */ + memory_insert_breakpoint, + memory_remove_breakpoint, 0, 0, 0, 0, 0, /* Terminal handling */ gdbsim_kill, /* kill */ gdbsim_load, /* load */ |