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 23fba86 commit f212089Copy full SHA for f212089
src/tools/miri/src/shims/unix/linux/epoll.rs
@@ -35,6 +35,8 @@ impl FileDescriptor for Epoll {
35
}
36
37
fn dup(&mut self) -> io::Result<Box<dyn FileDescriptor>> {
38
+ // FIXME: this is probably wrong -- check if the `dup`ed descriptor truly uses an
39
+ // independent event set.
40
Ok(Box::new(self.clone()))
41
42
0 commit comments