We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7821485 commit 7391067Copy full SHA for 7391067
src/shims/unix/linux/eventfd.rs
@@ -111,7 +111,7 @@ impl FileDescription for Event {
111
// Else, block.
112
match self.counter.checked_add(num) {
113
Some(new_count @ 0..=MAX_COUNTER) => {
114
- // Synchronize with all prior `write` calls to this FD.
+ // Future `read` calls will synchronize with this write, so update the FD clock.
115
if let Some(clock) = &ecx.release_clock() {
116
self.clock.join(clock);
117
}
0 commit comments