aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/atkbdc/psm.c
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/atkbdc/psm.c
parent2e55d247a6d6610c98412798ff06d682f2ee91c6 (diff)
downloadsrc-512824f8f7748f7bb54ef900bc8e68a95a3d0f4d.tar.gz
src-512824f8f7748f7bb54ef900bc8e68a95a3d0f4d.zip
- Implement selwakeuppri() which allows raising the priority of a
thread being waken up. The thread waken up can run at a priority as high as after tsleep(). - Replace selwakeup()s with selwakeuppri()s and pass appropriate priorities. - Add cv_broadcastpri() which raises the priority of the broadcast threads. Used by selwakeuppri() if collision occurs. Not objected in: -arch, -current
Notes
Notes: svn path=/head/; revision=122352
Diffstat (limited to 'sys/dev/atkbdc/psm.c')
-rw-r--r--sys/dev/atkbdc/psm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/atkbdc/psm.c b/sys/dev/atkbdc/psm.c
index ef98da420f6b..2c14bbe750d7 100644
--- a/sys/dev/atkbdc/psm.c
+++ b/sys/dev/atkbdc/psm.c
@@ -2371,7 +2371,7 @@ psmintr(void *arg)
sc->state &= ~PSM_ASLP;
wakeup( sc);
}
- selwakeup(&sc->rsel);
+ selwakeuppri(&sc->rsel, PZERO);
}
}