forked from Imagelibrary/binutils-gdb
* 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.
This commit is contained in:
@@ -123,7 +123,7 @@ static void procfs_files_info (struct target_ops *);
|
||||
static void procfs_fetch_registers (struct regcache *, int);
|
||||
static void procfs_store_registers (struct regcache *, int);
|
||||
static void procfs_notice_signals (ptid_t);
|
||||
static void procfs_prepare_to_store (void);
|
||||
static void procfs_prepare_to_store (struct regcache *);
|
||||
static void procfs_kill_inferior (void);
|
||||
static void procfs_mourn_inferior (void);
|
||||
static void procfs_create_inferior (char *, char *, char **, int);
|
||||
@@ -3732,11 +3732,8 @@ procfs_fetch_registers (struct regcache *regcache, int regnum)
|
||||
from the program being debugged. */
|
||||
|
||||
static void
|
||||
procfs_prepare_to_store (void)
|
||||
procfs_prepare_to_store (struct regcache *regcache)
|
||||
{
|
||||
#ifdef CHILD_PREPARE_TO_STORE
|
||||
CHILD_PREPARE_TO_STORE ();
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Store register REGNUM back into the inferior. If REGNUM is -1, do
|
||||
|
||||
Reference in New Issue
Block a user