summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2011-05-05 08:21:09 +0000
committermrg <mrg@NetBSD.org>2011-05-05 08:21:09 +0000
commit3ef8c678412be47c29a94835993fdcb382d70f48 (patch)
tree447fcef3a820a0f95905dc9beeb145a00de6bbac /sys/dev/raidframe
parentf6a8431293f0481858c2c4375e7f263805aaaa3a (diff)
RF_BROADCAST_COND() is no more.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_threadstuff.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_threadstuff.h b/sys/dev/raidframe/rf_threadstuff.h
index 92b21984a47..58ff83c9a75 100644
--- a/sys/dev/raidframe/rf_threadstuff.h
+++ b/sys/dev/raidframe/rf_threadstuff.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_threadstuff.h,v 1.30 2011/05/03 08:18:43 mrg Exp $ */
+/* $NetBSD: rf_threadstuff.h,v 1.31 2011/05/05 08:21:09 mrg Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -68,7 +68,6 @@ typedef void *RF_ThreadArg_t;
#define RF_WAIT_COND(_c_,_m_) \
ltsleep(&(_c_), PRIBIO, "rfwcond", 0, &(_m_))
#define RF_SIGNAL_COND(_c_) wakeup_one(&(_c_))
-#define RF_BROADCAST_COND(_c_) wakeup(&(_c_))
#define rf_mutex_init(m) simple_lock_init(m)