io_uring_prep_poll_remove(3) | liburing Manual | io_uring_prep_poll_remove(3) |
io_uring_prep_poll_remove - prepare a poll deletion request
#include <liburing.h>
void io_uring_prep_poll_remove(struct io_uring_sqe *sqe, __u64 user_data);
The io_uring_prep_poll_remove(3) function prepares a poll removal request. The submission queue entry sqe is setup to remove a poll request identified by user_data
Works like io_uring_prep_cancel(3) except only looks for poll requests. Apart from that, behavior is identical. See that man page for specific details.
None
These are the errors that are reported in the CQE res field. On success, 0 is returned.
io_uring_get_sqe(3), io_uring_submit(3), io_uring_prep_cancel(3)
March 12, 2022 | liburing-2.2 |