From bf243579ed193f33ae26ce01153cd11e395698db Mon Sep 17 00:00:00 2001 From: briggs Date: Tue, 11 Sep 2007 16:31:01 +0000 Subject: [PATCH] Define splclock() so that this will at least compile on architectures without _HAVE_TIMECOUNTER. --- sys/rump/include/machine/intr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/rump/include/machine/intr.h b/sys/rump/include/machine/intr.h index 9c1d540b5ba8..1a3f8f6ce807 100644 --- a/sys/rump/include/machine/intr.h +++ b/sys/rump/include/machine/intr.h @@ -1,4 +1,4 @@ -/* $NetBSD: intr.h,v 1.2 2007/08/14 14:06:12 pooka Exp $ */ +/* $NetBSD: intr.h,v 1.3 2007/09/11 16:31:01 briggs Exp $ */ /* * Copyright (c) 2007 Antti Kantee. All Rights Reserved. @@ -33,6 +33,7 @@ #define spllower(x) ((void)0) #define splraise(x) 0 #define splsoftnet() 0 +#define splclock() 0 #define splbio() 0 #define splvm() 0 #define splx(x) ((void)x)