diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-06 18:55:41 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-06 18:55:41 +0000 |
commit | f399b0f7d6172ad47649be7b40e2f00d33cc2e43 (patch) | |
tree | 422a15b6bbff62da6d0390efd9538766449724aa /gdb/remote-sim.c | |
parent | bc214dc4fa9cdf464e424998ee6b6c0899f5cd12 (diff) | |
download | gdb-f399b0f7d6172ad47649be7b40e2f00d33cc2e43.tar.gz |
* target.h (struct target_ops): Add REGCACHE parameter to
to_prepare_to_store.
(target_prepare_to_store): Likewise.
* target.c (debug_to_prepare_to_store): Add REGCACHE parameter.
(update_current_target): Adapt prepare_to_store de_fault rule.
* regcache.c (regcache_raw_write): Pass regcache to
target_prepare_to_store.
* inftarg.c (child_prepare_to_store): Add REGCACHE parameter.
Do not call CHILD_PREPARE_TO_STORE.
* gnu-nat.c (gnu_prepare_to_store): Likewise.
* procfs.c (procfs_prepare_to_store): Likewise.
* inf-child.c (inf_child_prepare_to_store): Add REGCACHE parameter.
* go32-nat.c (go32_prepare_to_store): Likewise.
* monitor.c (monitor_prepare_to_store): Likewise.
* nto-procfs.c (procfs_prepare_to_store): Likewise.
* remote-m32r-sdi.c (m32r_prepare_to_store): Likewise.
* remote-mips.c (mips_prepare_to_store): Likewise.
* remote-sim.c (gdbsim_prepare_to_store): Likewise.
* win32-nat.c (win32_prepare_to_store): Likewise.
* remote.c (remote_prepare_to_store): Add REGCACHE parameter.
Use it instead of current_regcache.
* hpux-thread.c (hpux_thread_prepare_to_store): Add REGCACHE
parameter. Pass it on to next target.
* sol-thread.c (sol_thread_prepare_to_store): Likewise.
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 425d1a69253..0a13713c14c 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -91,7 +91,7 @@ static void gdbsim_resume (ptid_t ptid, int step, enum target_signal siggnal); static ptid_t gdbsim_wait (ptid_t ptid, struct target_waitstatus *status); -static void gdbsim_prepare_to_store (void); +static void gdbsim_prepare_to_store (struct regcache *regcache); static void gdbsim_files_info (struct target_ops *target); @@ -734,7 +734,7 @@ gdbsim_wait (ptid_t ptid, struct target_waitstatus *status) debugged. */ static void -gdbsim_prepare_to_store (void) +gdbsim_prepare_to_store (struct regcache *regcache) { /* Do nothing, since we can store individual regs */ } |