From 2d7f8f3343669c05f36348ffb673c17688f30849 Mon Sep 17 00:00:00 2001 From: thorpej Date: Fri, 4 Dec 1998 20:19:22 +0000 Subject: [PATCH] Support both a.out and Elf32 symbols in DDB. --- sys/arch/i386/include/db_machdep.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/arch/i386/include/db_machdep.h b/sys/arch/i386/include/db_machdep.h index 435efd8f7be1..f6f062c4cef5 100644 --- a/sys/arch/i386/include/db_machdep.h +++ b/sys/arch/i386/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $NetBSD: db_machdep.h,v 1.13 1998/08/13 21:36:05 thorpej Exp $ */ +/* $NetBSD: db_machdep.h,v 1.14 1998/12/04 20:19:22 thorpej Exp $ */ /* * Mach Operating System @@ -115,8 +115,10 @@ void db_task_name(/* task_t */); int kdb_trap __P((int, int, db_regs_t *)); /* - * We use a.out symbols in DDB. + * We use either a.out or Elf32 symbols in DDB. */ #define DB_AOUT_SYMBOLS +#define DB_ELF_SYMBOLS +#define DB_ELFSIZE 32 #endif /* _I386_DB_MACHDEP_H_ */