aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathew Kanner <matk@FreeBSD.org>2004-02-20 01:24:57 +0000
committerMathew Kanner <matk@FreeBSD.org>2004-02-20 01:24:57 +0000
commit0a2a8111d2876f3e5d7fef430a18097bb3a2876d (patch)
treed44823e37e0ed4e22db33b9096a5ffed28ec6a59
parent91bdd189c64708a25b7f3f2f8e972c263bbae33e (diff)
Notes
-rw-r--r--sys/dev/sound/pcm/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pcm/channel.c b/sys/dev/sound/pcm/channel.c
index baf34fdb88b0b..4a18b52389496 100644
--- a/sys/dev/sound/pcm/channel.c
+++ b/sys/dev/sound/pcm/channel.c
@@ -121,7 +121,7 @@ chn_wakeup(struct pcm_channel *c)
CHN_LOCKASSERT(c);
if (SLIST_EMPTY(&c->children)) {
if (SEL_WAITING(sndbuf_getsel(bs)) && chn_polltrigger(c))
- selwakeup(sndbuf_getsel(bs));
+ selwakeuppri(sndbuf_getsel(bs), PRIBIO);
} else {
SLIST_FOREACH(pce, &c->children, link) {
CHN_LOCK(pce->channel);