From Paul Hilfinger. Add attribs param to hpux_thread_xfer_memory.
authorAndrew Cagney <cagney@redhat.com>
Fri, 16 Feb 2001 23:09:05 +0000 (23:09 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 16 Feb 2001 23:09:05 +0000 (23:09 +0000)
gdb/ChangeLog
gdb/hpux-thread.c

index 4f44e9e..29df80e 100644 (file)
@@ -1,3 +1,10 @@
+2001-02-16  Andrew Cagney  <ac131313@redhat.com>
+
+       From 2001-02-11 Paul Hilfinger <hilfingr@lisbon.int.act-europe.fr>
+       * hpux-thread.c (hpux_thread_xfer_memory): Add mem_attrib 
+       argument to parameter list and to call in order to conform to 
+       to_xfer_memory field of struct target_ops.
+
 2001-02-12  Michael Chastain  <chastain@redhat.com>
 
        * somsolib.c (som_solib_add_solib_objfile): Do not use
index af456f1..4df446e 100644 (file)
@@ -434,7 +434,8 @@ hpux_thread_prepare_to_store (void)
 
 static int
 hpux_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
-                        int dowrite, struct target_ops *target)
+                        int dowrite, struct mem_attrib *attribs,
+                        struct target_ops *target)
 {
   int retval;
   struct cleanup *old_chain;
@@ -443,7 +444,8 @@ hpux_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
 
   inferior_pid = main_pid;
 
-  retval = child_ops.to_xfer_memory (memaddr, myaddr, len, dowrite, target);
+  retval = 
+    child_ops.to_xfer_memory (memaddr, myaddr, len, dowrite, attribs, target);
 
   do_cleanups (old_chain);