summaryrefslogtreecommitdiff
path: root/gdb/i386gnu-nat.c
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2008-10-07 18:42:42 +0000
committerPedro Alves <pedro@codesourcery.com>2008-10-07 18:42:42 +0000
commitc60668ca54e19c46ae721ed56359fd5792165b6d (patch)
tree9bf9ceee71f0d76c579f821e6ec2b79b30c36d9e /gdb/i386gnu-nat.c
parent026452c4225c0af4b26066e0c109cd7d88381033 (diff)
downloadgdb-c60668ca54e19c46ae721ed56359fd5792165b6d.tar.gz
* gnu-nat.h: Rename `current_inferior' to `gnu_current_inf' to
avoid a name collision. * gnu-nat.c: Likewise. * i386gnu-nat.c: Likewise.
Diffstat (limited to 'gdb/i386gnu-nat.c')
-rw-r--r--gdb/i386gnu-nat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/i386gnu-nat.c b/gdb/i386gnu-nat.c
index 6545d08604e..3d71047eab7 100644
--- a/gdb/i386gnu-nat.c
+++ b/gdb/i386gnu-nat.c
@@ -116,9 +116,9 @@ gnu_fetch_registers (struct regcache *regcache, int regno)
struct proc *thread;
/* Make sure we know about new threads. */
- inf_update_procs (current_inferior);
+ inf_update_procs (gnu_current_inf);
- thread = inf_tid_to_thread (current_inferior,
+ thread = inf_tid_to_thread (gnu_current_inf,
ptid_get_tid (inferior_ptid));
if (!thread)
error (_("Can't fetch registers from thread %s: No such thread"),
@@ -208,9 +208,9 @@ gnu_store_registers (struct regcache *regcache, int regno)
struct gdbarch *gdbarch = get_regcache_arch (regcache);
/* Make sure we know about new threads. */
- inf_update_procs (current_inferior);
+ inf_update_procs (gnu_current_inf);
- thread = inf_tid_to_thread (current_inferior,
+ thread = inf_tid_to_thread (gnu_current_inf,
ptid_get_tid (inferior_ptid));
if (!thread)
error (_("Couldn't store registers into thread %s: No such thread"),