diff options
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/exec.c | 3 | ||||
-rw-r--r-- | gdb/exec.h | 2 | ||||
-rw-r--r-- | gdb/value.h | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4a07065..c88a9f4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,6 +1,15 @@ 2011-02-14 Pedro Alves <pedro@codesourcery.com> Jan Kratochvil <jan.kratochvil@redhat.com> + * 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'. + +2011-02-14 Pedro Alves <pedro@codesourcery.com> + Jan Kratochvil <jan.kratochvil@redhat.com> + * memrange.c (compare_mem_ranges): Mention sort order in describing comment. (normalize_mem_ranges): Add comment. Fix ra->length calculation. @@ -574,12 +574,11 @@ map_vmap (bfd *abfd, bfd *arch) VEC(mem_range_s) * section_table_available_memory (VEC(mem_range_s) *memory, - CORE_ADDR memaddr, LONGEST len, + CORE_ADDR memaddr, ULONGEST len, struct target_section *sections, struct target_section *sections_end) { struct target_section *p; - ULONGEST memend = memaddr + len; for (p = sections; p < sections_end; p++) { @@ -52,7 +52,7 @@ extern int resize_section_table (struct target_section_table *, int); extern VEC(mem_range_s) * section_table_available_memory (VEC(mem_range_s) *ranges, - CORE_ADDR memaddr, LONGEST len, + CORE_ADDR memaddr, ULONGEST len, struct target_section *sections, struct target_section *sections_end); 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); |