pub fn eventfd_write(efd_id: u32, value: u64) -> Result<usize, SyscallError>Expand description
Write to an eventfd. Adds value to the internal counter.
If the addition would overflow u64::MAX - 1, returns EAGAIN when
nonblock is set, otherwise busy-waits until a read drains the counter
enough (capped at 30s).