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/remote-sim.c | |
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/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 */ |