aboutsummaryrefslogtreecommitdiff
path: root/gdb/coffread.c
diff options
context:
space:
mode:
authorgdb-3.5 <gdb@fsf.org>1990-02-08 06:14:00 +0000
committerPedro Alves <palves@redhat.com>2012-06-03 15:36:32 +0100
commit7a67dd45ca1c191a0220697a3ec9fa92993caf8c (patch)
treeea93641dd0b45fbca686b5e989b0f1085a7541b7 /gdb/coffread.c
parent1c997a4ae86938343edb715efc3fc742c5f668fe (diff)
downloadfsf-binutils-gdb-7a67dd45ca1c191a0220697a3ec9fa92993caf8c.zip
fsf-binutils-gdb-7a67dd45ca1c191a0220697a3ec9fa92993caf8c.tar.gz
fsf-binutils-gdb-7a67dd45ca1c191a0220697a3ec9fa92993caf8c.tar.bz2
gdb-3.5
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r--gdb/coffread.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c
index f6a9c8a..a657cf3 100644
--- a/gdb/coffread.c
+++ b/gdb/coffread.c
@@ -20,6 +20,7 @@ You should have received a copy of the GNU General Public License
along with GDB; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+#include <stdio.h>
#include "defs.h"
#include "param.h"
#ifdef COFF_FORMAT
@@ -31,7 +32,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#endif
#include <a.out.h>
-#include <stdio.h>
#include <obstack.h>
#include <sys/param.h>
#include <sys/file.h>
@@ -762,7 +762,8 @@ symbol_file_command (name)
num_sections = file_hdr.f_nscns;
symtab_offset = file_hdr.f_symptr;
- if (read_section_hdr (desc, _TEXT, &text_hdr, num_sections) < 0)
+ if (read_section_hdr (desc, _TEXT, &text_hdr, num_sections,
+ file_hdr.f_opthdr) < 0)
error ("\"%s\": can't read text section header", name);
/* Read the line number table, all at once. */
@@ -865,7 +866,9 @@ read_coff_symtab (desc, nsyms)
int num_object_files = 0;
int next_file_symnum = -1;
- char *filestring;
+
+ /* Name of the current file. */
+ char *filestring = "";
int depth;
int fcn_first_line;
int fcn_last_line;
@@ -1151,15 +1154,22 @@ read_aout_hdr (chan, aout_hdr, size)
return 0;
}
-read_section_hdr (chan, section_name, section_hdr, nsects)
+/* Read a section header. OPTIONAL_HEADER_SIZE is the size of the
+ optional header (normally f_opthdr from the file header).
+
+ Return nonnegative for success, -1 for failure. */
+int
+read_section_hdr (chan, section_name, section_hdr, nsects,
+ optional_header_size)
register int chan;
register char *section_name;
SCNHDR *section_hdr;
register int nsects;
+ int optional_header_size;
{
register int i;
- if (lseek (chan, FILHSZ + sizeof (AOUTHDR), 0) < 0)
+ if (lseek (chan, FILHSZ + optional_header_size, 0) < 0)
return -1;
for (i = 0; i < nsects; i++)