fixed ms warnings

This commit is contained in:
Jeff Hill
2004-01-27 00:27:52 +00:00
parent 94a77fec91
commit b59586dc83
8 changed files with 32 additions and 6 deletions

View File

@@ -100,12 +100,14 @@ int oldChannelNotify::changeConnCallBack (
void oldChannelNotify::setPrivatePointer (
epicsGuard < epicsMutex > & guard, void *pPrivateIn )
{
guard.assertIdenticalMutex ( this->cacCtx.mutexRef () );
this->pPrivate = pPrivateIn;
}
void * oldChannelNotify::privatePointer (
epicsGuard < epicsMutex > & guard ) const
{
guard.assertIdenticalMutex ( this->cacCtx.mutexRef () );
return this->pPrivate;
}