summaryrefslogtreecommitdiff
path: root/sys/arch/sgi/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-05-05 12:06:21 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-05-05 12:06:21 +0000
commite5fea0cce4df41f7cd12b6bc013a75712e7f3ade (patch)
treed32817d43b8a2f36da9444799ec66ad26c086908 /sys/arch/sgi/include
parentb5b2d558aea0851d214d1a05e1fdb6d96ce526cb (diff)
Define MUTEX_OLDIPL where they were missing, will be used (reasonably) shortly.
Diffstat (limited to 'sys/arch/sgi/include')
-rw-r--r--sys/arch/sgi/include/mutex.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sgi/include/mutex.h b/sys/arch/sgi/include/mutex.h
index 2c5d340d309..f3b0bd61b84 100644
--- a/sys/arch/sgi/include/mutex.h
+++ b/sys/arch/sgi/include/mutex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mutex.h,v 1.1 2007/05/01 18:59:40 miod Exp $ */
+/* $OpenBSD: mutex.h,v 1.2 2007/05/05 12:06:20 miod Exp $ */
/*
* Copyright (c) 2004 Artur Grabowski <art@openbsd.org>
@@ -56,4 +56,6 @@ void mtx_init(struct mutex *, int);
#define MUTEX_ASSERT_UNLOCKED(mtx) do { } while (0)
#endif
+#define MUTEX_OLDIPL(mtx) (mtx)->mtx_oldcpl
+
#endif