diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 2001-01-24 21:01:02 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 2001-01-24 21:01:02 +0000 |
commit | f4d650ecb379a6d7d92e60d43d9c9773a192395e (patch) | |
tree | f27c4acaffb3a84b487383fd0536d031a5fda4d3 /gdb/sol-thread.c | |
parent | f332af5233dc21b499026fcd63ec57139b76bc74 (diff) | |
download | binutils-gdb-f4d650ecb379a6d7d92e60d43d9c9773a192395e.tar.gz |
* dcache.c (dcache_write_line): Fix typo.
* memattr.c (delete_mem_region): Replace free() with xfree().
(mem_number): Add explicit type.
* sol-thread.c (sol_thread_xfer_memory): Add attrib argument.
(rw_common): Likewise.
Diffstat (limited to 'gdb/sol-thread.c')
-rw-r--r-- | gdb/sol-thread.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index be51710ffed..d4325a071f4 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -762,6 +762,7 @@ sol_thread_prepare_to_store (void) static int sol_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int dowrite, + struct mem_attrib *attrib, struct target_ops *target) { int retval; @@ -775,10 +776,11 @@ sol_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int dowrite, /* Note: don't need to call switch_to_thread; we're just reading memory. */ if (target_has_execution) - retval = procfs_ops.to_xfer_memory (memaddr, myaddr, len, dowrite, target); + retval = procfs_ops.to_xfer_memory (memaddr, myaddr, len, + dowrite, attrib, target); else retval = orig_core_ops.to_xfer_memory (memaddr, myaddr, len, - dowrite, target); + dowrite, attrib, target); do_cleanups (old_chain); @@ -1060,10 +1062,13 @@ rw_common (int dowrite, const struct ps_prochandle *ph, gdb_ps_addr_t addr, { int cc; + /* FIXME: passing 0 as attrib argument. */ if (target_has_execution) - cc = procfs_ops.to_xfer_memory (addr, buf, size, dowrite, &procfs_ops); + cc = procfs_ops.to_xfer_memory (addr, buf, size, + dowrite, 0, &procfs_ops); else - cc = orig_core_ops.to_xfer_memory (addr, buf, size, dowrite, &core_ops); + cc = orig_core_ops.to_xfer_memory (addr, buf, size, + dowrite, 0, &core_ops); if (cc < 0) { |