diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-11-27 19:57:24 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-11-27 19:57:24 +0000 |
commit | 0ed7bf7b63c6099fc1205fa39502c78fba9d94c0 (patch) | |
tree | 305a037847e752d58307b5307bc7e15b5ef94c58 /sys/arch/sh/include/db_machdep.h | |
parent | 5e5b8791118667f1de14d12971ebf359c1488cec (diff) |
Remove ddb single-step load and store counters. Most platforms do not
implement them, and they are of questionable usefulness.
Diffstat (limited to 'sys/arch/sh/include/db_machdep.h')
-rw-r--r-- | sys/arch/sh/include/db_machdep.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/sh/include/db_machdep.h b/sys/arch/sh/include/db_machdep.h index c993969352f..8b95aca7269 100644 --- a/sys/arch/sh/include/db_machdep.h +++ b/sys/arch/sh/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.4 2008/02/11 20:44:11 miod Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.5 2010/11/27 19:57:23 miod Exp $ */ /* $NetBSD: db_machdep.h,v 1.12 2006/05/10 06:24:03 skrll Exp $ */ /* @@ -57,9 +57,6 @@ extern db_regs_t ddb_regs; /* register state */ #define IS_BREAKPOINT_TRAP(type, code) ((type) == EXPEVT_TRAPA) #define IS_WATCHPOINT_TRAP(type, code) (0) /* XXX (msaitoh) */ -#define inst_load(ins) 0 -#define inst_store(ins) 0 - int kdb_trap(int, int, db_regs_t *); void db_machine_init (void); boolean_t inst_call(int); |