From a63da3e2a893db8cb3e1c50a3f3bc68969e2186b Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 16 Apr 2003 20:38:15 +0000 Subject: [PATCH] require guard when sending crate chan msg --- src/ca/nciu.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ca/nciu.cpp b/src/ca/nciu.cpp index effb60b4a..93442ff89 100644 --- a/src/ca/nciu.cpp +++ b/src/ca/nciu.cpp @@ -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; }