Ignore the INTR_MPSAFE flag when calculating the priority of an interrupt

thread.
This commit is contained in:
jhb 2000-11-10 21:19:14 +00:00
parent 27c11d750a
commit 0b5178cf17

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;