* lin-lwp.c (lin_lwp_xfer_memory): Add attrib argument.

* thread-db.c (thread_db_xfer_memory): Likewise.
This commit is contained in:
J.T. Conklin
2001-01-24 00:26:46 +00:00
parent 090c42a489
commit e5da8f389f
3 changed files with 6 additions and 2 deletions

View File

@@ -753,6 +753,7 @@ thread_db_wait (int pid, struct target_waitstatus *ourstatus)
static int
thread_db_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
struct mem_attrib *attrib,
struct target_ops *target)
{
struct cleanup *old_chain = save_inferior_pid ();
@@ -768,7 +769,7 @@ thread_db_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
inferior_pid = lwp_from_thread (inferior_pid);
}
xfer = target_beneath->to_xfer_memory (memaddr, myaddr, len, write, target);
xfer = target_beneath->to_xfer_memory (memaddr, myaddr, len, write, attrib, target);
do_cleanups (old_chain);
return xfer;