Ignore the INTR_MPSAFE flag when calculating the priority of an interrupt

thread.
This commit is contained in:
John Baldwin 2000-11-10 21:19:14 +00:00
parent 589d1374d4
commit b5d09a79b5

View File

@ -63,6 +63,7 @@ ithread_priority(flags)
{
int pri;
flags &= ~INTR_MPSAFE;
switch (flags) {
case INTR_TYPE_TTY: /* keyboard or parallel port */
pri = PI_TTYLOW;