* proc-service.c (ps_lgetregs): Don't refetch registers from the
authorPedro Alves <palves@redhat.com>
Thu, 21 Jan 2010 15:33:19 +0000 (15:33 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 21 Jan 2010 15:33:19 +0000 (15:33 +0000)
target.

gdb/gdbserver/ChangeLog
gdb/gdbserver/proc-service.c

index 35ce8fe..0d2b378 100644 (file)
@@ -1,5 +1,10 @@
 2010-01-21  Pedro Alves  <pedro@codesourcery.com>
 
+       * proc-service.c (ps_lgetregs): Don't refetch registers from the
+       target.
+
+2010-01-21  Pedro Alves  <pedro@codesourcery.com>
+
        * spu-low.c (spu_fetch_registers, spu_store_registers): Change
        prototype to take a regcache.  Adjust.
 
index 3bb9194..8827174 100644 (file)
@@ -111,7 +111,6 @@ ps_lgetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, prgregset_t gregset)
   save_inferior = current_inferior;
   current_inferior = reg_inferior;
   regcache = get_thread_regcache (current_inferior, 1);
-  the_target->fetch_registers (regcache, -1);
   gregset_info ()->fill_function (regcache, gregset);
 
   current_inferior = save_inferior;