diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-15 16:55:15 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-15 16:55:15 +0000 |
commit | 043780a1fb7055b5af0f3fd8baf4f2f90d94043d (patch) | |
tree | 5d6a697d7c3a181ac2d73bde75dafc58433012ed /gdb/procfs.c | |
parent | 12cca0d2933144b318360510c90115ab8f17ce3d (diff) | |
download | gdb-043780a1fb7055b5af0f3fd8baf4f2f90d94043d.zip gdb-043780a1fb7055b5af0f3fd8baf4f2f90d94043d.tar.gz gdb-043780a1fb7055b5af0f3fd8baf4f2f90d94043d.tar.bz2 |
Add ``attrib'' parameter to *xfer_memory() functions.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index d8c5f54..8586238 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -113,8 +113,9 @@ static void procfs_kill_inferior (void); static void procfs_mourn_inferior (void); static void procfs_create_inferior (char *, char *, char **); static int procfs_wait (int, struct target_waitstatus *); -static int procfs_xfer_memory (CORE_ADDR, - char *, int, int, struct target_ops *); +static int procfs_xfer_memory (CORE_ADDR, char *, int, int, + struct mem_attrib *attrib, + struct target_ops *); static int procfs_thread_alive (int); @@ -3909,6 +3910,7 @@ wait_again: static int procfs_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int dowrite, + struct mem_attrib *attrib, struct target_ops *target) { procinfo *pi; |