* gnu-nat.h: Rename current_inferior' to gnu_current_inf' to

avoid a name collision.
	* gnu-nat.c: Likewise.
	* i386gnu-nat.c: Likewise.
This commit is contained in:
Pedro Alves
2008-10-07 18:42:42 +00:00
parent 899de17032
commit c289427b7d
4 changed files with 41 additions and 33 deletions

View File

@@ -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"),