Update to work with the new elf headers.

This commit is contained in:
Doug Rabson 1998-08-17 08:06:31 +00:00
parent e00c264242
commit bcf270989f
1 changed files with 2 additions and 17 deletions

View File

@ -1,4 +1,4 @@
/* $Id: db_elf.c,v 1.1 1998/06/28 00:57:27 dfr Exp $ */
/* $Id: db_elf.c,v 1.2 1998/06/28 00:59:26 dfr Exp $ */
/* $NetBSD: db_elf.c,v 1.4 1998/05/03 18:49:54 thorpej Exp $ */
/*-
@ -60,9 +60,6 @@
#include <machine/elf.h>
#define CONCAT(x,y) __CONCAT(x,y)
#define ELFDEFNAME(x) CONCAT(Elf,CONCAT(ELFSIZE,CONCAT(_,x)))
static char *db_elf_find_strtab __P((db_symtab_t *));
#define STAB_TO_SYMSTART(stab) ((Elf_Sym *)((stab)->start))
@ -70,18 +67,6 @@ static char *db_elf_find_strtab __P((db_symtab_t *));
#define STAB_TO_EHDR(stab) ((Elf_Ehdr *)((stab)->private))
#define STAB_TO_SHDR(stab, e) ((Elf_Shdr *)((stab)->private + (e)->e_shoff))
#define Elf_Ehdr ELFDEFNAME(Ehdr)
#define Elf_Shdr ELFDEFNAME(Shdr)
#define Elf_Sym ELFDEFNAME(Sym)
#if ELFSIZE == 64
#define ELF_ST_TYPE(x) ELF64_ST_TYPE(x)
#define ELF_ST_BIND(x) ELF64_ST_BIND(x)
#else
#define ELF_ST_TYPE(x) ELF32_ST_TYPE(x)
#define ELF_ST_BIND(x) ELF32_ST_BIND(x)
#endif
void X_db_sym_init(void *symtab, void *esymtab, char *name);
/*
@ -392,7 +377,7 @@ X_db_sym_numargs(symtab, cursym, nargp, argnamep)
extern void *ksym_start, *ksym_end;
void
kdb_init()
kdb_init(void)
{
if (ksym_end > ksym_start)