Define splclock() so that this will at least compile on architectures

without _HAVE_TIMECOUNTER.
This commit is contained in:
briggs 2007-09-11 16:31:01 +00:00
parent 7db40473e2
commit bf243579ed
1 changed files with 2 additions and 1 deletions

View File

@ -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. * Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@ -33,6 +33,7 @@
#define spllower(x) ((void)0) #define spllower(x) ((void)0)
#define splraise(x) 0 #define splraise(x) 0
#define splsoftnet() 0 #define splsoftnet() 0
#define splclock() 0
#define splbio() 0 #define splbio() 0
#define splvm() 0 #define splvm() 0
#define splx(x) ((void)x) #define splx(x) ((void)x)