From 22cbf8b2147b8ddae525b8c481ccbbff6730194a Mon Sep 17 00:00:00 2001 From: John Winans Date: Fri, 17 Apr 1992 13:39:08 +0000 Subject: [PATCH] changed xactListDel to drvMsg_xactListAddTail --- src/drv/drvMsg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drv/drvMsg.c b/src/drv/drvMsg.c index e97975904..ccfb4db77 100644 --- a/src/drv/drvMsg.c +++ b/src/drv/drvMsg.c @@ -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