aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/nmdm
diff options
context:
space:
mode:
authorSeigo Tanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
committerSeigo Tanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
commit512824f8f7748f7bb54ef900bc8e68a95a3d0f4d (patch)
tree19de3ca43ba82c3cf15a4a6c7fba917e0f7e416b /sys/dev/nmdm
parent2e55d247a6d6610c98412798ff06d682f2ee91c6 (diff)
Notes
Diffstat (limited to 'sys/dev/nmdm')
-rw-r--r--sys/dev/nmdm/nmdm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/nmdm/nmdm.c b/sys/dev/nmdm/nmdm.c
index 1511e9b2c987..3227b11f34e4 100644
--- a/sys/dev/nmdm/nmdm.c
+++ b/sys/dev/nmdm/nmdm.c
@@ -451,11 +451,11 @@ wakeup_other(struct tty *tp, int flag)
GETPARTS(tp, ourpart, otherpart);
if (flag & FREAD) {
- selwakeup(&otherpart->nm_tty.t_rsel);
+ selwakeuppri(&otherpart->nm_tty.t_rsel, TTIPRI);
wakeup(TSA_PTC_READ((&otherpart->nm_tty)));
}
if (flag & FWRITE) {
- selwakeup(&otherpart->nm_tty.t_wsel);
+ selwakeuppri(&otherpart->nm_tty.t_wsel, TTOPRI);
wakeup(TSA_PTC_WRITE((&otherpart->nm_tty)));
}
}