Skip to content
Snippets Groups Projects

ProcStats : Use mutex lock to make fetch() thread safe.

Merged Christopher Rob Jones requested to merge jonrob/Gaudi:ProcStats-thread-safe into master
All threads resolved!
Compare and Show latest version
2 files
+ 1
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -59,7 +59,7 @@ StatusCode SequentialOutputStream::execute() {
void SequentialOutputStream::makeFilename() {
if ( m_events % m_eventsPerFile != 0 ) return;
bf::path outputPath( m_outputName );
bf::path outputPath( m_outputName.value() );
string filename = outputPath.filename().string();
bf::path dir = outputPath.parent_path();
string stem = outputPath.stem().string();
Loading