* maint.c (maint_print_section_info): Rename print_section_info.

(print_bfd_section_info, print_objfile_section_info): Update.
* inferior.h (struct gdbarch): Add opaque declaration.
* gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
* gdbarch.h: Regenerate.
This commit is contained in:
Andrew Cagney 2002-04-10 22:00:20 +00:00
parent 8d0da3c2f5
commit 67a2b77eff
5 changed files with 19 additions and 5 deletions

View File

@ -1,3 +1,11 @@
2002-04-10 Andrew Cagney <ac131313@redhat.com>
* maint.c (maint_print_section_info): Rename print_section_info.
(print_bfd_section_info, print_objfile_section_info): Update.
* inferior.h (struct gdbarch): Add opaque declaration.
* gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
* gdbarch.h: Regenerate.
2002-04-10 Michal Ludvig <mludvig@suse.cz>
* x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.

View File

@ -37,7 +37,9 @@
#include "dis-asm.h" /* Get defs for disassemble_info, which unfortunately is a typedef. */
#if !GDB_MULTI_ARCH
/* Pull in function declarations refered to, indirectly, via macros. */
#include "value.h" /* For default_coerce_float_to_double which is referenced by a macro. */
#include "inferior.h" /* For unsigned_address_to_pointer(). */
#endif
struct frame_info;

View File

@ -726,7 +726,9 @@ cat <<EOF
#include "dis-asm.h" /* Get defs for disassemble_info, which unfortunately is a typedef. */
#if !GDB_MULTI_ARCH
/* Pull in function declarations refered to, indirectly, via macros. */
#include "value.h" /* For default_coerce_float_to_double which is referenced by a macro. */
#include "inferior.h" /* For unsigned_address_to_pointer(). */
#endif
struct frame_info;

View File

@ -23,6 +23,8 @@
#if !defined (INFERIOR_H)
#define INFERIOR_H 1
struct gdbarch;
/* For bpstat. */
#include "breakpoint.h"

View File

@ -291,9 +291,9 @@ print_bfd_flags (flagword flags)
}
static void
print_section_info (const char *name, flagword flags,
CORE_ADDR addr, CORE_ADDR endaddr,
unsigned long filepos)
maint_print_section_info (const char *name, flagword flags,
CORE_ADDR addr, CORE_ADDR endaddr,
unsigned long filepos)
{
/* FIXME-32x64: Need print_address_numeric with field width. */
printf_filtered (" 0x%s", paddr (addr));
@ -321,7 +321,7 @@ print_bfd_section_info (bfd *abfd,
addr = bfd_section_vma (abfd, asect);
endaddr = addr + bfd_section_size (abfd, asect);
print_section_info (name, flags, addr, endaddr, asect->filepos);
maint_print_section_info (name, flags, addr, endaddr, asect->filepos);
}
}
@ -337,7 +337,7 @@ print_objfile_section_info (bfd *abfd,
|| match_substring (string, name)
|| match_bfd_flags (string, flags))
{
print_section_info (name, flags, asect->addr, asect->endaddr,
maint_print_section_info (name, flags, asect->addr, asect->endaddr,
asect->the_bfd_section->filepos);
}
}