summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2001-03-07 23:38:23 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2001-03-07 23:38:23 +0000
commit8b9c7865f9e57ac3da77d672cd57243f8308d011 (patch)
tree1abec327e89c19915c8eac0dadc6cda8f3e2b580 /sys/arch/mvme88k
parentac7202c4dca35eb26043de3d2fed988825772fe1 (diff)
_KERNEL, not KERNEL, dammit !
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r--sys/arch/mvme88k/include/profile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/include/profile.h b/sys/arch/mvme88k/include/profile.h
index 94a500c08fc..2fff4ff3e88 100644
--- a/sys/arch/mvme88k/include/profile.h
+++ b/sys/arch/mvme88k/include/profile.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: profile.h,v 1.9 2001/01/15 19:50:38 deraadt Exp $ */
+/* $OpenBSD: profile.h,v 1.10 2001/03/07 23:38:22 miod Exp $ */
/*
* Copyright (c) 1996 Nivas Madhur
* Copyright (c) 1992, 1993
@@ -33,7 +33,7 @@
* SUCH DAMAGE.
*
* from: @(#)profile.h 8.1 (Berkeley) 6/11/93
- * $Id: profile.h,v 1.9 2001/01/15 19:50:38 deraadt Exp $
+ * $Id: profile.h,v 1.10 2001/03/07 23:38:22 miod Exp $
*/
#ifndef __MACHINE_PROFILE_H__
#define __MACHINE_PROFILE_H__
@@ -65,12 +65,12 @@ mcount() \
_mcount(callerret, selfret); \
}
-#ifdef KERNEL
+#ifdef _KERNEL
/*
* Note that we assume splhigh() and splx() cannot call mcount()
* recursively.
*/
#define MCOUNT_ENTER s = splhigh()
#define MCOUNT_EXIT splx(s)
-#endif /* KERNEL */
+#endif /* _KERNEL */
#endif __MACHINE_PROFILE_H__