From e30a01cab5550f7e6b52e1994d59f3fe8635d88a Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 15 Oct 2001 21:47:10 +0000 Subject: [PATCH] cosmetic --- src/ca/getCopy.cpp | 4 ++-- src/ca/syncgrp.cpp | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/ca/getCopy.cpp b/src/ca/getCopy.cpp index 02afd63db..bb9feefff 100644 --- a/src/ca/getCopy.cpp +++ b/src/ca/getCopy.cpp @@ -24,8 +24,8 @@ tsFreeList < class getCopy, 1024 > getCopy::freeList; epicsMutex getCopy::freeListMutex; -getCopy::getCopy ( oldCAC &cacCtxIn, oldChannelNotify &chanIn, unsigned typeIn, - arrayElementCount countIn, void *pValueIn ) : +getCopy::getCopy ( oldCAC &cacCtxIn, oldChannelNotify &chanIn, + unsigned typeIn, arrayElementCount countIn, void *pValueIn ) : count ( countIn ), cacCtx ( cacCtxIn ), chan ( chanIn ), pValue ( pValueIn ), readSeq ( cacCtxIn.sequenceNumberOfOutstandingIO () ), type ( typeIn ) { diff --git a/src/ca/syncgrp.cpp b/src/ca/syncgrp.cpp index d8b6c9864..a8e1ed3b0 100644 --- a/src/ca/syncgrp.cpp +++ b/src/ca/syncgrp.cpp @@ -40,9 +40,9 @@ */ extern "C" int epicsShareAPI ca_sg_create ( CA_SYNC_GID *pgid ) { + oldCAC *pcac; int caStatus; CASG *pcasg; - oldCAC *pcac; caStatus = fetchClientContext ( &pcac ); if ( caStatus != ECA_NORMAL ) { @@ -64,9 +64,9 @@ extern "C" int epicsShareAPI ca_sg_create ( CA_SYNC_GID *pgid ) */ extern "C" int epicsShareAPI ca_sg_delete ( const CA_SYNC_GID gid ) { + oldCAC *pcac; int caStatus; CASG *pcasg; - oldCAC *pcac; caStatus = fetchClientContext ( &pcac ); if ( caStatus != ECA_NORMAL ) { @@ -88,8 +88,8 @@ extern "C" int epicsShareAPI ca_sg_delete ( const CA_SYNC_GID gid ) */ extern "C" int epicsShareAPI ca_sg_block ( const CA_SYNC_GID gid, ca_real timeout ) { - CASG *pcasg; oldCAC *pcac; + CASG *pcasg; int status; status = fetchClientContext (&pcac); @@ -113,8 +113,8 @@ extern "C" int epicsShareAPI ca_sg_block ( const CA_SYNC_GID gid, ca_real timeou */ extern "C" int epicsShareAPI ca_sg_reset ( const CA_SYNC_GID gid ) { - CASG *pcasg; oldCAC *pcac; + CASG *pcasg; int caStatus; caStatus = fetchClientContext (&pcac); @@ -139,8 +139,8 @@ extern "C" int epicsShareAPI ca_sg_reset ( const CA_SYNC_GID gid ) */ extern "C" int epicsShareAPI ca_sg_stat ( const CA_SYNC_GID gid ) { - CASG *pcasg; oldCAC *pcac; + CASG *pcasg; int caStatus = fetchClientContext (&pcac); if ( caStatus != ECA_NORMAL ) { @@ -163,8 +163,8 @@ extern "C" int epicsShareAPI ca_sg_stat ( const CA_SYNC_GID gid ) */ extern "C" int epicsShareAPI ca_sg_test ( const CA_SYNC_GID gid ) { - CASG *pcasg; oldCAC *pcac; + CASG *pcasg; int caStatus; caStatus = fetchClientContext (&pcac); @@ -191,8 +191,8 @@ extern "C" int epicsShareAPI ca_sg_test ( const CA_SYNC_GID gid ) extern "C" int epicsShareAPI ca_sg_array_put ( const CA_SYNC_GID gid, chtype type, arrayElementCount count, chid pChan, const void *pValue ) { - CASG *pcasg; oldCAC *pcac; + CASG *pcasg; int caStatus; caStatus = fetchClientContext ( &pcac ); @@ -215,8 +215,8 @@ extern "C" int epicsShareAPI ca_sg_array_put ( const CA_SYNC_GID gid, chtype typ extern "C" int epicsShareAPI ca_sg_array_get ( const CA_SYNC_GID gid, chtype type, arrayElementCount count, chid pChan, void *pValue ) { - CASG *pcasg; oldCAC *pcac; + CASG *pcasg; int caStatus; caStatus = fetchClientContext ( &pcac );