From d0b06e271b4ee7152427db6a1b24276a406030af Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Fri, 3 Dec 2004 16:11:13 +0000 Subject: [PATCH] forgot an unlock --- src/db/dbNotify.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/db/dbNotify.c b/src/db/dbNotify.c index a879619c1..e389fcd92 100644 --- a/src/db/dbNotify.c +++ b/src/db/dbNotify.c @@ -188,11 +188,13 @@ STATIC void callUser(dbCommon *precord,putNotify *ppn) if(pputNotifyPvt->cancelWait) { pputNotifyPvt->cancelWait = 0; epicsEventSignal(pputNotifyPvt->cancelEvent); + epicsMutexUnlock(pnotifyGlobal->lock); return; } assert(pputNotifyPvt->userCallbackWait); pputNotifyPvt->userCallbackWait = 0; epicsEventSignal(pputNotifyPvt->userCallbackEvent); + epicsMutexUnlock(pnotifyGlobal->lock); return; }