diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-08-09 16:35:45 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-08-09 16:35:45 +0000 |
commit | 8e70166dc52cf82a61e0a414f364f3ff7c45dfa7 (patch) | |
tree | a0627b1f2464d595d1f921864bf63302783a66a0 /gdb/linux-nat.h | |
parent | 2f6178c175ba113600c532b8fc84e8d54beddb78 (diff) | |
download | gdb-8e70166dc52cf82a61e0a414f364f3ff7c45dfa7.zip gdb-8e70166dc52cf82a61e0a414f364f3ff7c45dfa7.tar.gz gdb-8e70166dc52cf82a61e0a414f364f3ff7c45dfa7.tar.bz2 |
2005-08-09 Andrew Cagney <cagney@gnu.org>
* linux-nat.h (linux_proc_xfer_memory): Change type of "myaddr" a
"gdb_byte" pointer.
* linux-nat.c (linux_proc_xfer_memory): Update.
(get_signo): Cast signo to a "gdb_byte" pointer.
* i386-linux-nat.c (child_resume): Make "buf" a gdb_byte, delete
redundant casts.
(child_resume): Cast eflags to a "gdb_byte" pointer.
Diffstat (limited to 'gdb/linux-nat.h')
-rw-r--r-- | gdb/linux-nat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.h b/gdb/linux-nat.h index 74a8286..a900943 100644 --- a/gdb/linux-nat.h +++ b/gdb/linux-nat.h @@ -68,7 +68,7 @@ struct lwp_info struct mem_attrib; struct target_ops; -extern int linux_proc_xfer_memory (CORE_ADDR addr, char *myaddr, int len, +extern int linux_proc_xfer_memory (CORE_ADDR addr, gdb_byte *myaddr, int len, int write, struct mem_attrib *attrib, struct target_ops *target); |