io_uring_prep_write
fn
void io_uring_prep_write(io_uring_sqe * sqe, int fd, const void * buf, uint len, ulong offset, ulong user_data) pure @systemPrepare an SQE for a WRITE operation.
Parameters
sqe | Pointer to the SQE to prepare. |
fd | File descriptor to write to. |
buf | Pointer to the buffer containing data to write. |
len | Number of bytes to write. |
offset | File offset to write at (use cast(ulong)-1 for current position). |
user_data | User data to be returned with the completion. |