Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix documentation of TBufferMerger member variable
  • Loading branch information
amadio committed May 10, 2017
commit 77ff196afddf63f1ca59d7491f742f3eb24652c8
2 changes: 1 addition & 1 deletion io/io/inc/ROOT/TBufferMerger.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private:
std::mutex fWriteMutex; //< Mutex used for the condition variable
std::condition_variable fCV; //< Condition variable used to wait for data
std::queue<TBufferFile *> fQueue; //< Queue to which data is pushed and merged
std::unique_ptr<TFile> fFile; //< Output file, owned by the user
std::unique_ptr<TFile> fFile; //< Output file, owned by this class
std::unique_ptr<std::thread> fMergingThread; //< Worker thread that writes to disk
std::vector<std::weak_ptr<TBufferMergerFile>> fAttachedFiles; //< Attached files

Expand Down