epoll: note a FIXME

This commit is contained in:
Ralf Jung 2024-04-03 15:19:33 +02:00
parent 23fba86c3b
commit f2120893c6

View File

@ -35,6 +35,8 @@ impl FileDescriptor for Epoll {
}
fn dup(&mut self) -> io::Result<Box<dyn FileDescriptor>> {
// FIXME: this is probably wrong -- check if the `dup`ed descriptor truly uses an
// independent event set.
Ok(Box::new(self.clone()))
}