firmed up compile time lock requirements

This commit is contained in:
Jeff Hill
2002-04-26 00:10:35 +00:00
parent 9e46188c51
commit b22084a741
5 changed files with 15 additions and 19 deletions

View File

@@ -45,6 +45,6 @@ void msgForMultiplyDefinedPV::ioCompletionNotify ( const char * pHostNameRej )
char buf[256];
sprintf ( buf, "Channel: \"%.64s\", Connecting to: %.64s, Ignored: %.64s",
this->channel, this->acc, pHostNameRej );
epicsGuard < callbackMutex > guard ( this->mutex );
genLocalExcep ( this->cacRef, ECA_DBLCHNL, buf );
epicsGuard < callbackMutex > cbGuard ( this->mutex );
genLocalExcep ( cbGuard, this->cacRef, ECA_DBLCHNL, buf );
}