io_uring_prep_link_timeout
fn
void io_uring_prep_link_timeout(io_uring_sqe * sqe, const KernelTimespec * ts,
ulong userData) nothrow @nogc pure @safePrepare a linked timeout SQE.
Must be submitted immediately after a linked operation SQE (with IOSQE_IO_LINK set). When the linked operation does not complete within ts, the kernel cancels it and delivers a CQE with -ECANCELED for the operation and userData for the timeout.
Parameters
sqe | Pointer to the SQE to fill. |
ts | Pointer to a KernelTimespec with the timeout. |
userData | User data returned in the CQE on timeout. |