From f384eee9b69e8894d5d1fdc65c4110c84c3ab595 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 24 Sep 2004 15:42:54 +0000 Subject: [PATCH] fixed sunpro warnings --- src/ca/tcpiiu.cpp | 2 +- src/ca/udpiiu.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/tcpiiu.cpp b/src/ca/tcpiiu.cpp index 063bcab4c..a4d40f7bf 100644 --- a/src/ca/tcpiiu.cpp +++ b/src/ca/tcpiiu.cpp @@ -850,7 +850,7 @@ void tcpiiu::unresponsiveCircuitNotify ( { epicsGuardRelease < epicsMutex > unguard ( guard ); { - epicsGuardRelease < epicsMutex > unguard ( cbGuard ); + epicsGuardRelease < epicsMutex > cbUnguard ( cbGuard ); this->recvDog.cancel (); this->sendDog.cancel (); } diff --git a/src/ca/udpiiu.cpp b/src/ca/udpiiu.cpp index e8a59a9a4..0703d012f 100644 --- a/src/ca/udpiiu.cpp +++ b/src/ca/udpiiu.cpp @@ -286,7 +286,7 @@ void udpiiu::shutdown ( { epicsGuardRelease < epicsMutex > unguard ( guard ); { - epicsGuardRelease < epicsMutex > unguard ( cbGuard ); + epicsGuardRelease < epicsMutex > cbUnguard ( cbGuard ); if ( ! this->recvThread.exitWait ( 0.0 ) ) { unsigned tries = 0u;