* 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'.
This commit is contained in:
Pedro Alves 2011-02-14 22:08:48 +00:00
parent e0ccc0c7e0
commit 424447eef3
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,12 @@
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>

View File

@ -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++)
{

View File

@ -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);

View File

@ -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);