From Paul Hilfinger. Add attribs param to hpux_thread_xfer_memory.
This commit is contained in:
parent
0a9c3cb62a
commit
971429b4a4
@ -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
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user