aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-rdp.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-09-06 23:39:15 +0000
committerAndrew Cagney <cagney@redhat.com>2000-09-06 23:39:15 +0000
commit3bb04bddc31dde4fac4c974d77dcfca097ba071a (patch)
tree887ec075c78d4abdd777721d58715278dc5badf3 /gdb/remote-rdp.c
parent492055e63351f3e50634e94b60bb146ede9a537b (diff)
downloadgdb-3bb04bddc31dde4fac4c974d77dcfca097ba071a.zip
gdb-3bb04bddc31dde4fac4c974d77dcfca097ba071a.tar.gz
gdb-3bb04bddc31dde4fac4c974d77dcfca097ba071a.tar.bz2
Wed Sep 6 23:15:43 2000 Andrew Cagney <cagney@b1.cygnus.com>
* remote-rdi.c (voiddummy): Update function signature to match struct Dbg_HostosInterface's reset method. * remote-rdp.c (rdp_step): Fix handle parameter to remote_rdp_insert_breakpoint and remote_rdp_remove_breakpoint. * arm-tdep.c (SIGCONTEXT_REGISTER_ADDRESS_P): Provide default definition. (arm_init_extra_frame_info): Use.
Diffstat (limited to 'gdb/remote-rdp.c')
-rw-r--r--gdb/remote-rdp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-rdp.c b/gdb/remote-rdp.c
index 2acd57b..d64e94a 100644
--- a/gdb/remote-rdp.c
+++ b/gdb/remote-rdp.c
@@ -1096,9 +1096,9 @@ rdp_step (void)
char handle[4];
CORE_ADDR pc = read_register (PC_REGNUM);
pc = arm_get_next_pc (pc);
- remote_rdp_insert_breakpoint (pc, &handle);
+ remote_rdp_insert_breakpoint (pc, handle);
rdp_execute ();
- remote_rdp_remove_breakpoint (pc, &handle);
+ remote_rdp_remove_breakpoint (pc, handle);
}
}