Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As reported in #577, #578 didn't fix the UB in cancelled tasks. There were two bugs in that "fix":
continuation_.done()
to store the coroutine handle to be resumed later becausedone()
completes the operation withset_done()
as a side effect.This diff fixes both issues. Instead of storing a coroutine handle to be resumed, we store an enum value that describes which coroutine handle to resume (so we don't eagerly invoke
done()
), and we do the store before synchronizing to eliminate the data race.I've added a unit test that fails with a TSAN-detected data race without the fix, and the fix silences the TSAN error.
I also clang-formatted
task.hpp
and the modified test file.