- File:
-
- 1 edited
-
libcfa/src/concurrency/iocall.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/iocall.cfa
r20ab637 r5877b3e 128 128 #endif 129 129 } 130 131 ssize_t cfa_preadv2_fixed(int fd, const struct iovec *iov, int iovcnt, off_t offset, int flags) {132 #if !defined(HAVE_LINUX_IO_URING_H) || !defined(IORING_OP_READV)133 return preadv2(fd, iov, iovcnt, offset, flags);134 #else135 __submit_prelude136 137 (*sqe){ IORING_OP_READV, fd, iov, iovcnt, offset };138 sqe->flags |= IOSQE_FIXED_FILE;139 140 __submit_wait141 #endif142 }143 130 #endif 144 131
Note:
See TracChangeset
for help on using the changeset viewer.