* 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

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