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.
2 parents 6fee850 + 5177354 commit 29f68edCopy full SHA for 29f68ed
src/shims/unix/linux/epoll.rs
@@ -626,7 +626,7 @@ fn check_and_update_one_event_interest<'tcx>(
626
let mut event_instance = EpollEventInstance::new(flags, epoll_event_interest.data);
627
// If we are tracking data races, remember the current clock so we can sync with it later.
628
ecx.release_clock(|clock| {
629
- event_instance.clock.join(clock);
+ event_instance.clock.clone_from(clock);
630
});
631
// Triggers the notification by inserting it to the ready list.
632
ready_list.insert(epoll_key, event_instance);
0 commit comments