summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include/trap.h
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-05-20 14:34:24 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-05-20 14:34:24 +0000
commitb1890ca22d874fb370ac187b53434f3eca727304 (patch)
treec9053be94dd4bfed8ddccee78fdb674b9228a1bb /sys/arch/mips64/include/trap.h
parent33e9691e2dc0401176de186b7e72b4e3d6851129 (diff)
Remove unused badaddr().
Diffstat (limited to 'sys/arch/mips64/include/trap.h')
-rw-r--r--sys/arch/mips64/include/trap.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/mips64/include/trap.h b/sys/arch/mips64/include/trap.h
index e190be4415f..2fd793bd754 100644
--- a/sys/arch/mips64/include/trap.h
+++ b/sys/arch/mips64/include/trap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.h,v 1.7 2006/06/06 17:42:28 miod Exp $ */
+/* $OpenBSD: trap.h,v 1.8 2007/05/20 14:34:21 miod Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -74,11 +74,9 @@
/*
* Defines for trap handler catching kernel accessng memory.
*/
-#define KT_BADERR 1 /* Bad address */
-#define KT_COPYERR 2 /* User space copy error */
-#define KT_KCOPYERR 3 /* Kernel space copy error */
-#define KT_DDBERR 4 /* DDB access error */
-
+#define KT_COPYERR 1 /* User space copy error */
+#define KT_KCOPYERR 2 /* Kernel space copy error */
+#define KT_DDBERR 3 /* DDB access error */
#ifndef _LOCORE