From e5da8f389f1dee6f7c362ec3904f42b5a481f3b4 Mon Sep 17 00:00:00 2001 From: "J.T. Conklin" Date: Wed, 24 Jan 2001 00:26:46 +0000 Subject: * lin-lwp.c (lin_lwp_xfer_memory): Add attrib argument. * thread-db.c (thread_db_xfer_memory): Likewise. --- gdb/thread-db.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/thread-db.c') diff --git a/gdb/thread-db.c b/gdb/thread-db.c index ed27861..f425bf4 100644 --- a/gdb/thread-db.c +++ b/gdb/thread-db.c @@ -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; -- cgit v1.1