summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-04-19 15:23:38 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-04-19 15:23:38 +0000
commita1550a70da670eeb3484a2165d0ed4bc19473958 (patch)
tree8818c9234b71ddfea69471235ebde41a1f52c656 /sys/arch
parent0b5115cb89864e03245af9cd7dc576a4f568da06 (diff)
Nuke DB_NO_AOUT, and have platforms with a.out symbols explicitely provide
DB_AOUT_SYMBOLS.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/arm/include/db_machdep.h3
-rw-r--r--sys/arch/m88k/include/db_machdep.h4
-rw-r--r--sys/arch/mips64/include/db_machdep.h3
3 files changed, 5 insertions, 5 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;