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 ef16db1 commit 715e404Copy full SHA for 715e404
src/shims/unix/linux/fd/epoll.rs
@@ -12,14 +12,14 @@ pub struct Epoll {
12
pub file_descriptors: FxHashMap<i32, EpollEvent>,
13
}
14
15
-#[derive(Clone, Debug)]
16
/// Epoll Events associate events with data.
17
/// These fields are currently unused by miri.
18
/// This matches the `epoll_event` struct defined
19
/// by the epoll_ctl man page. For more information
20
/// see the man page:
21
///
22
/// <https://man7.org/linux/man-pages/man2/epoll_ctl.2.html>
+#[derive(Clone, Debug)]
23
pub struct EpollEvent {
24
pub events: u32,
25
/// `Scalar<Provenance>` is used to represent the
0 commit comments