summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include/intr.h
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-04-29 07:35:25 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-04-29 07:35:25 +0000
commit58b795ff3804354615895262e28a384888974748 (patch)
treeeb5db6c8d5fc0eeb8ef3cbf2df312c1be54a9e4a /sys/arch/alpha/include/intr.h
parent0b9f832710043487d06d6c864886495eda2d4a68 (diff)
Define placeholders for art's splassert() debugging stuff on all arches.
Currently as no-ops everywhere. ok art@, deraadt@
Diffstat (limited to 'sys/arch/alpha/include/intr.h')
-rw-r--r--sys/arch/alpha/include/intr.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/include/intr.h b/sys/arch/alpha/include/intr.h
index f030a102889..b6953c946e3 100644
--- a/sys/arch/alpha/include/intr.h
+++ b/sys/arch/alpha/include/intr.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.h,v 1.14 2002/03/14 03:15:50 millert Exp $ */
+/* $OpenBSD: intr.h,v 1.15 2002/04/29 07:35:13 miod Exp $ */
/* $NetBSD: intr.h,v 1.26 2000/06/03 20:47:41 thorpej Exp $ */
/*-
@@ -107,6 +107,9 @@
#ifdef _KERNEL
+/* SPL asserts */
+#define splassert(wantipl) /* nothing */
+
/* IPL-lowering/restoring macros */
#define splx(s) \
((s) == ALPHA_PSL_IPL_0 ? spl0() : alpha_pal_swpipl(s))