diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2017-03-17 13:55:57 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-03-17 13:55:57 -0400 |
commit | d9cb6cdcfa12368f2f639f8cd06d18b94bd98a39 (patch) | |
tree | 6af755f357e1d9730ce2ac0dc66a73ad6586c4ed /gdb/i386-gnu-nat.c | |
parent | 1afaf9f42fe201872d758214beceff85325a988a (diff) | |
download | binutils-d9cb6cdcfa12368f2f639f8cd06d18b94bd98a39.zip binutils-d9cb6cdcfa12368f2f639f8cd06d18b94bd98a39.tar.gz binutils-d9cb6cdcfa12368f2f639f8cd06d18b94bd98a39.tar.bz2 |
i386-gnu-nat: Use ptid from regcache instead of inferior_ptid
gdb/ChangeLog:
* i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
ptid from regcache.
Diffstat (limited to 'gdb/i386-gnu-nat.c')
-rw-r--r-- | gdb/i386-gnu-nat.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/i386-gnu-nat.c b/gdb/i386-gnu-nat.c index 6953eeb..3bce88a 100644 --- a/gdb/i386-gnu-nat.c +++ b/gdb/i386-gnu-nat.c @@ -91,15 +91,15 @@ gnu_fetch_registers (struct target_ops *ops, struct regcache *regcache, int regno) { struct proc *thread; + ptid_t ptid = regcache_get_ptid (regcache); /* Make sure we know about new threads. */ inf_update_procs (gnu_current_inf); - thread = inf_tid_to_thread (gnu_current_inf, - ptid_get_lwp (inferior_ptid)); + thread = inf_tid_to_thread (gnu_current_inf, ptid_get_lwp (ptid)); if (!thread) error (_("Can't fetch registers from thread %s: No such thread"), - target_pid_to_str (inferior_ptid)); + target_pid_to_str (ptid)); if (regno < I386_NUM_GREGS || regno == -1) { @@ -184,15 +184,15 @@ gnu_store_registers (struct target_ops *ops, { struct proc *thread; struct gdbarch *gdbarch = get_regcache_arch (regcache); + ptid_t ptid = regcache_get_ptid (regcache); /* Make sure we know about new threads. */ inf_update_procs (gnu_current_inf); - thread = inf_tid_to_thread (gnu_current_inf, - ptid_get_lwp (inferior_ptid)); + thread = inf_tid_to_thread (gnu_current_inf, ptid_get_lwp (ptid)); if (!thread) error (_("Couldn't store registers into thread %s: No such thread"), - target_pid_to_str (inferior_ptid)); + target_pid_to_str (ptid)); if (regno < I386_NUM_GREGS || regno == -1) { |