Automatic date update in version.in
[external/binutils.git] / gdb / i386-gnu-nat.c
index 1acfc07..ca30eb6 100644 (file)
@@ -113,7 +113,7 @@ gnu_fetch_registers (struct target_ops *ops,
   /* Make sure we know about new threads.  */
   inf_update_procs (gnu_current_inf);
 
-  thread = inf_tid_to_thread (gnu_current_inf, ptid_get_lwp (ptid));
+  thread = inf_tid_to_thread (gnu_current_inf, ptid.lwp ());
   if (!thread)
     error (_("Can't fetch registers from thread %s: No such thread"),
           target_pid_to_str (ptid));
@@ -205,7 +205,7 @@ gnu_store_registers (struct target_ops *ops,
   /* Make sure we know about new threads.  */
   inf_update_procs (gnu_current_inf);
 
-  thread = inf_tid_to_thread (gnu_current_inf, ptid_get_lwp (ptid));
+  thread = inf_tid_to_thread (gnu_current_inf, ptid.lwp ());
   if (!thread)
     error (_("Couldn't store registers into thread %s: No such thread"),
           target_pid_to_str (ptid));
@@ -265,7 +265,7 @@ gnu_store_registers (struct target_ops *ops,
 
          for (i = 0; i < I386_NUM_GREGS; i++)
            if (REG_VALID == regcache->get_register_status (i))
-             regcache_raw_collect (regcache, i, REG_ADDR (state, i));
+             regcache->raw_collect (i, REG_ADDR (state, i));
        }
       else
        {
@@ -273,7 +273,7 @@ gnu_store_registers (struct target_ops *ops,
                      gdbarch_register_name (gdbarch, regno));
 
          gdb_assert (REG_VALID == regcache->get_register_status (regno));
-         regcache_raw_collect (regcache, regno, REG_ADDR (state, regno));
+         regcache->raw_collect (regno, REG_ADDR (state, regno));
        }
 
       /* Restore the T bit.  */
@@ -392,7 +392,7 @@ i386_gnu_dr_get_reg (ptid_t ptid, int regnum)
   /* Make sure we know about new threads.  */
   inf_update_procs (gnu_current_inf);
 
-  thread = inf_tid_to_thread (gnu_current_inf, ptid_get_lwp (ptid));
+  thread = inf_tid_to_thread (gnu_current_inf, ptid.lwp ());
   i386_gnu_dr_get (&regs, thread);
 
   return regs.dr[regnum];