summaryrefslogtreecommitdiffstats
path: root/sys/sys
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2001-07-06 01:16:43 +0000
committerjake <jake@FreeBSD.org>2001-07-06 01:16:43 +0000
commit0227d4f3f6d8534b8027bb619b88334ce57f902b (patch)
tree9885d5202221baf43ef381d60b5693cbd699e1c9 /sys/sys
parenta13e730bdf2abc3fbe91e4d31dcda8cd0f886e3f (diff)
downloadFreeBSD-src-0227d4f3f6d8534b8027bb619b88334ce57f902b.zip
FreeBSD-src-0227d4f3f6d8534b8027bb619b88334ce57f902b.tar.gz
Backout mwakeup, etc.
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/condvar.h2
-rw-r--r--sys/sys/systm.h6
2 files changed, 2 insertions, 6 deletions
diff --git a/sys/sys/condvar.h b/sys/sys/condvar.h
index 903d635..5460024 100644
--- a/sys/sys/condvar.h
+++ b/sys/sys/condvar.h
@@ -59,9 +59,7 @@ int cv_timedwait(struct cv *cvp, struct mtx *mp, int timo);
int cv_timedwait_sig(struct cv *cvp, struct mtx *mp, int timo);
void cv_signal(struct cv *cvp);
-void cv_signal_drop(struct cv *cvp, struct mtx *mp);
void cv_broadcast(struct cv *cvp);
-void cv_broadcast_drop(struct cv *cvp, struct mtx *mp);
void cv_waitq_remove(struct proc *p);
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index c238f3f..aa95807 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -259,10 +259,8 @@ int msleep __P((void *chan, struct mtx *mtx, int pri, const char *wmesg,
int asleep __P((void *chan, int pri, const char *wmesg, int timo));
#define await(pri, timo) mawait(NULL, pri, timo)
int mawait __P((struct mtx *mtx, int pri, int timo));
-void mwakeup __P((void *chan, struct mtx *mtx));
-#define wakeup(chan) mwakeup(chan, NULL)
-void mwakeup_one __P((void *chan, struct mtx *mtx));
-#define wakeup_one(chan) mwakeup_one(chan, NULL)
+void wakeup __P((void *chan));
+void wakeup_one __P((void *chan));
/*
* Common `dev_t' stuff are declared here to avoid #include poisoning
OpenPOWER on IntegriCloud