diff options
author | Pedro Alves <palves@redhat.com> | 2008-10-07 18:42:42 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-10-07 18:42:42 +0000 |
commit | c289427b7dcbeb9d5ee0ad4d177bc36c9d8990f5 (patch) | |
tree | af61037bd1d325062f0f2c38b3375ce846077703 /gdb/i386gnu-nat.c | |
parent | 899de17032bebf0ef63864dfd582c00cb67b6176 (diff) | |
download | gdb-c289427b7dcbeb9d5ee0ad4d177bc36c9d8990f5.zip gdb-c289427b7dcbeb9d5ee0ad4d177bc36c9d8990f5.tar.gz gdb-c289427b7dcbeb9d5ee0ad4d177bc36c9d8990f5.tar.bz2 |
* 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.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/i386gnu-nat.c b/gdb/i386gnu-nat.c index 6545d08..3d71047 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"), |