io_uring_prep_poll_add
fn
void io_uring_prep_poll_add(io_uring_sqe * sqe, int fd, ushort poll_mask, ulong user_data) pure @safePrepare an SQE for a POLL_ADD operation.
Adds a poll monitor for the specified file descriptor and events.
Parameters
sqe | Pointer to the SQE to prepare. |
fd | File descriptor to poll. |
poll_mask | Poll event mask (POLLIN, POLLOUT, etc.). |
user_data | User data to be returned with the completion. |