From 231010a8ee69abb861e1c42fb995f284c7897839 Mon Sep 17 00:00:00 2001 From: devans Date: Mon, 28 Dec 2009 19:45:56 +0000 Subject: [PATCH] * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h, elf/external.h. Include instead but only if necessary. --- gdb/gdbserver/ChangeLog | 5 +++++ gdb/gdbserver/linux-low.c | 14 +++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 3706a4fc20..9f23916b99 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2009-12-28 Doug Evans + + * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h, + elf/external.h. Include instead but only if necessary. + 2009-12-28 Pedro Alves * linux-low.c (linux_remove_process): Remove `detaching' diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 4c636e1bcf..06b22020d3 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -19,9 +19,6 @@ #include "server.h" #include "linux-low.h" -#include "ansidecl.h" /* For ATTRIBUTE_PACKED, must be bug in external.h. */ -#include "elf/common.h" -#include "elf/external.h" #include #include @@ -42,6 +39,13 @@ #include #include #include +#ifndef ELFMAG0 +/* Don't include here. If it got included by gdb_proc_service.h + then ELFMAG0 will have been defined. If it didn't get included by + gdb_proc_service.h then including it will likely introduce a duplicate + definition of elf_fpregset_t. */ +#include +#endif #ifndef SPUFS_MAGIC #define SPUFS_MAGIC 0x23c9b64e @@ -191,7 +195,7 @@ linux_child_pid_to_exec_file (int pid) /* Return non-zero if HEADER is a 64-bit ELF file. */ static int -elf_64_header_p (const Elf64_External_Ehdr *header) +elf_64_header_p (const Elf64_Ehdr *header) { return (header->e_ident[EI_MAG0] == ELFMAG0 && header->e_ident[EI_MAG1] == ELFMAG1 @@ -207,7 +211,7 @@ elf_64_header_p (const Elf64_External_Ehdr *header) int elf_64_file_p (const char *file) { - Elf64_External_Ehdr header; + Elf64_Ehdr header; int fd; fd = open (file, O_RDONLY); -- 2.11.0