diff options
author | Pedro Alves <palves@redhat.com> | 2011-02-14 22:08:48 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2011-02-14 22:08:48 +0000 |
commit | 424447eef3554474b508e0ee0be21347e1d8fc46 (patch) | |
tree | f8987113f069c3df20159d445f6f6679207fce1d /gdb/value.h | |
parent | e0ccc0c7e0746ce69608488ca0e1bec8c07a1166 (diff) | |
download | gdb-424447eef3554474b508e0ee0be21347e1d8fc46.zip gdb-424447eef3554474b508e0ee0be21347e1d8fc46.tar.gz gdb-424447eef3554474b508e0ee0be21347e1d8fc46.tar.bz2 |
* exec.c (section_table_available_memory): Change `len' parameter
type to ULONGEST.
* exec.h (section_table_available_memory): Ditto.
* value.h (read_value_memory): Rename the `offset' parameter to
`embedded_offset'.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.h b/gdb/value.h index b5e77fd..b8ce97b 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -410,7 +410,7 @@ extern int value_available_contents_eq (const struct value *val1, int offset1, memory is likewise unavailable. STACK indicates whether the memory is known to be stack memory. */ -extern void read_value_memory (struct value *val, int offset, +extern void read_value_memory (struct value *val, int embedded_offset, int stack, CORE_ADDR memaddr, gdb_byte *buffer, size_t length); |