diff options
author | Daniel Jacobowitz <dan@debian.org> | 2002-11-26 01:23:46 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2002-11-26 01:23:46 +0000 |
commit | f47da1808e9f972f4fe9fbb13d3b7148e16e5cca (patch) | |
tree | b09a451625b2df97f4a40036fedc5bedab2c36c5 /gdb/lin-lwp.c | |
parent | 6cadb64cc938ffc04aac0939ed4219a253e3245b (diff) | |
download | gdb-f47da1808e9f972f4fe9fbb13d3b7148e16e5cca.tar.gz |
* acconfig.h (HAVE_PREAD64): Add.
* configure.in: Check for pread64.
* config.in: Regenerated.
* configure: Regenerated.
* lin-lwp.c (lin_lwp_xfer_memory): Call linux_proc_xfer_memory.
* linux-proc.c (linux_proc_xfer_memory): New function.
* config/nm-linux.h (linux_proc_xfer_memory): Add prototype.
Diffstat (limited to 'gdb/lin-lwp.c')
-rw-r--r-- | gdb/lin-lwp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/lin-lwp.c b/gdb/lin-lwp.c index 4b9d57d0320..88a10d802cf 100644 --- a/gdb/lin-lwp.c +++ b/gdb/lin-lwp.c @@ -1380,7 +1380,9 @@ lin_lwp_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write, if (is_lwp (inferior_ptid)) inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid)); - xfer = child_xfer_memory (memaddr, myaddr, len, write, attrib, target); + xfer = linux_proc_xfer_memory (memaddr, myaddr, len, write, attrib, target); + if (xfer == 0) + xfer = child_xfer_memory (memaddr, myaddr, len, write, attrib, target); do_cleanups (old_chain); return xfer; |