Skip to content
Snippets Groups Projects
Commit 293d80b1 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

ByteStreamCnvSvc: Fix thread-safety checker warnings.

    
Fix some new thread-safety checker warnings.
parent de9625d6
No related branches found
No related tags found
1 merge request!57133ByteStreamCnvSvc: Fix thread-safety checker warnings.
...@@ -20,7 +20,7 @@ atlas_add_library( ByteStreamCnvSvcLib ...@@ -20,7 +20,7 @@ atlas_add_library( ByteStreamCnvSvcLib
PRIVATE_LINK_LIBRARIES ${TDAQ-COMMON_LIBRARIES} ${Boost_LIBRARIES} PRIVATE_LINK_LIBRARIES ${TDAQ-COMMON_LIBRARIES} ${Boost_LIBRARIES}
AthenaKernel SGTools CollectionBase FileCatalog AthenaKernel SGTools CollectionBase FileCatalog
AthenaPoolUtilities PersistentDataModel xAODEventInfo xAODTrigger AthenaPoolUtilities PersistentDataModel xAODEventInfo xAODTrigger
ByteStreamCnvSvcLegacy ) ByteStreamCnvSvcLegacy CxxUtils )
atlas_add_component( ByteStreamCnvSvc atlas_add_component( ByteStreamCnvSvc
src/components/*.cxx src/components/*.cxx
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include "ByteStreamCnvSvc/ByteStreamInputSvc.h" #include "ByteStreamCnvSvc/ByteStreamInputSvc.h"
#include "ByteStreamCnvSvcBase/ByteStreamAddress.h" #include "ByteStreamCnvSvcBase/ByteStreamAddress.h"
#include "ByteStreamCnvSvc/ByteStreamExceptions.h" #include "ByteStreamCnvSvc/ByteStreamExceptions.h"
#include "CxxUtils/checker_macros.h"
#include "GaudiKernel/ClassID.h" #include "GaudiKernel/ClassID.h"
#include "GaudiKernel/FileIncident.h" #include "GaudiKernel/FileIncident.h"
...@@ -732,7 +733,8 @@ StatusCode EventSelectorByteStream::seek(Context& /* it */, int evtNum) const { ...@@ -732,7 +733,8 @@ StatusCode EventSelectorByteStream::seek(Context& /* it */, int evtNum) const {
} }
int delta = evtNum - m_firstEvt[m_fileCount]; int delta = evtNum - m_firstEvt[m_fileCount];
if (delta > 0) { if (delta > 0) {
if (nextImpl(*m_beginIter,delta, lock).isFailure()) return StatusCode::FAILURE; EventContextByteStream* beginIter ATLAS_THREAD_SAFE = m_beginIter;
if (nextImpl(*beginIter,delta, lock).isFailure()) return StatusCode::FAILURE;
} }
} }
// event in current file // event in current file
...@@ -743,10 +745,12 @@ StatusCode EventSelectorByteStream::seek(Context& /* it */, int evtNum) const { ...@@ -743,10 +745,12 @@ StatusCode EventSelectorByteStream::seek(Context& /* it */, int evtNum) const {
// nothing to do // nothing to do
} }
else if ( delta > 0 ) { // forward else if ( delta > 0 ) { // forward
if ( this->nextImpl(*m_beginIter, delta, lock).isFailure() ) return StatusCode::FAILURE; EventContextByteStream* beginIter ATLAS_THREAD_SAFE = m_beginIter;
if ( this->nextImpl(*beginIter, delta, lock).isFailure() ) return StatusCode::FAILURE;
} }
else if ( delta < 0 ) { // backward else if ( delta < 0 ) { // backward
if ( this->previousImpl(*m_beginIter, -1*delta, lock).isFailure() ) return(StatusCode::FAILURE); EventContextByteStream* beginIter ATLAS_THREAD_SAFE = m_beginIter;
if ( this->previousImpl(*beginIter, -1*delta, lock).isFailure() ) return(StatusCode::FAILURE);
} }
} }
return StatusCode::SUCCESS; return StatusCode::SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment