diff options
-rw-r--r-- | sys/arch/arm/include/db_machdep.h | 3 | ||||
-rw-r--r-- | sys/arch/m88k/include/db_machdep.h | 4 | ||||
-rw-r--r-- | sys/arch/mips64/include/db_machdep.h | 3 | ||||
-rw-r--r-- | sys/ddb/db_sym.h | 7 |
4 files changed, 5 insertions, 12 deletions
diff --git a/sys/arch/arm/include/db_machdep.h b/sys/arch/arm/include/db_machdep.h index ecd37bc6383..a91664c1708 100644 --- a/sys/arch/arm/include/db_machdep.h +++ b/sys/arch/arm/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.4 2005/01/05 15:49:30 miod Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.5 2005/04/19 15:23:34 miod Exp $ */ /* $NetBSD: db_machdep.h,v 1.5 2001/11/22 18:00:00 thorpej Exp $ */ /* @@ -110,7 +110,6 @@ void db_machine_init (void); #define DB_ELF_SYMBOLS #define DB_ELFSIZE 32 -#define DB_NO_AOUT void db_show_frame_cmd (db_expr_t, int, db_expr_t, char *); diff --git a/sys/arch/m88k/include/db_machdep.h b/sys/arch/m88k/include/db_machdep.h index fa4520db642..25517ac8e0a 100644 --- a/sys/arch/m88k/include/db_machdep.h +++ b/sys/arch/m88k/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.3 2005/01/04 21:32:40 miod Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.4 2005/04/19 15:23:37 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1991 Carnegie Mellon University @@ -131,6 +131,8 @@ void db_clear_single_step(db_regs_t *); int m88k_print_instruction(unsigned iadr, long inst); +#define DB_AOUT_SYMBOLS + #endif /* DDB */ #endif /* _LOCORE */ diff --git a/sys/arch/mips64/include/db_machdep.h b/sys/arch/mips64/include/db_machdep.h index a0ee99e5b3e..13012610c2b 100644 --- a/sys/arch/mips64/include/db_machdep.h +++ b/sys/arch/mips64/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.7 2005/01/31 21:35:49 grange Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.8 2005/04/19 15:23:37 miod Exp $ */ /* * Copyright (c) 1998-2003 Opsycon AB (www.opsycon.se) @@ -35,7 +35,6 @@ #define DB_MACHINE_COMMANDS /* We have machine specific commands */ #define DB_ELF_SYMBOLS /* Elf style symbol table support */ -#define DB_NO_AOUT /* For crying out loud! */ typedef struct trap_frame db_regs_t; extern db_regs_t ddb_regs; diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h index f99945353fe..25f9f7f3264 100644 --- a/sys/ddb/db_sym.h +++ b/sys/ddb/db_sym.h @@ -147,13 +147,6 @@ boolean_t db_line_at_pc(db_sym_t, char **, int *, db_expr_t); int db_sym_numargs(db_sym_t, int *, char **); char *db_qualify(db_sym_t, const char *); -/* - * XXX - should explicitly ask for aout symbols in machine/db_machdep.h - */ -#ifndef DB_NO_AOUT -#define DB_AOUT_SYMBOLS -#endif - #ifdef DB_AOUT_SYMBOLS extern db_symformat_t db_symformat_aout; #endif |