require guard when sending crate chan msg

This commit is contained in:
Jeff Hill
2003-04-16 20:38:15 +00:00
parent b04d6fc943
commit a63da3e2a8

View File

@@ -200,9 +200,10 @@ unsigned nciu::nameLen () const
return this->nameLength;
}
void nciu::createChannelRequest ( tcpiiu & iiu )
void nciu::createChannelRequest (
tcpiiu & iiu, epicsGuard < cacMutex > & guard )
{
iiu.createChannelRequest ( *this );
iiu.createChannelRequest ( *this, guard );
this->f_claimSent = true;
}