changed xactListDel to drvMsg_xactListAddTail

This commit is contained in:
John Winans
1992-04-17 13:39:08 +00:00
parent 1e92c41e91
commit 22cbf8b214

View File

@@ -300,7 +300,7 @@ printf("xact(%08.8X, %d): devRs232drv xact request entered\n", xact, prio);
}
FASTLOCK(&(pmsgLink->queue[prio].lock));
xactListAddTail(&(pmsgLink->queue[prio]), xact);
drvMsg_xactListAddTail(&(pmsgLink->queue[prio]), xact);
FASTUNLOCK(&(pmsgLink->queue[prio].lock));
semGive(pmsgLink->linkEventSem);
@@ -335,7 +335,7 @@ msgLink *pmsgLink;
FASTLOCK(&(pmsgLink->queue[prio].lock));
if ((xact = pmsgLink->queue[prio].head) != NULL)
{
xactListDel(&(pmsgLink->queue[prio]), xact);
drvMsg_xactListDel(&(pmsgLink->queue[prio]), xact);
FASTUNLOCK(&(pmsgLink->queue[prio].lock));
}
else