mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-30 23:40:24 +00:00
* 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:
parent
e0ccc0c7e0
commit
424447eef3
@ -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>
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user