Make * to & changes due to changes in pvData.

This commit is contained in:
Marty Kraimer
2011-02-18 08:20:27 -05:00
parent 50af37d7af
commit 753e6d246b
25 changed files with 205 additions and 204 deletions

View File

@@ -77,7 +77,7 @@ namespace epics {
void BlockingUDPTransport::close(bool forced, bool waitForThreadToComplete) {
{
Lock guard(&_mutex);
Lock guard(_mutex);
if(_closed) return;
_closed = true;
@@ -94,7 +94,7 @@ namespace epics {
}
void BlockingUDPTransport::enqueueSendRequest(TransportSender* sender) {
Lock lock(&_sendMutex);
Lock lock(_sendMutex);
_sendToEnabled = false;
_sendBuffer->clear();