-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add make_dirs and construct_data_paths to sink.cpp #47
Conversation
6b4ec7f
to
d072255
Compare
d072255
to
f034d62
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had a couple questions. One thing that might help me for these prs is to point out where you want review - I suspect I'm commenting/asking about things that have already been discussed in the past. Nothing major so approving.
|
||
latch.count_down(); | ||
all_successful.fetch_and(static_cast<char>(success)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fwiw, you can use release memory ordering here and acquire on the final read.
The default (cst) should work fine and I would be surprised if it mattered for performance.
Moving away from the
SinkCreator
class. Depends on #45.