Changeset a67279a for libcfa/src/concurrency/io
- Timestamp:
- Mar 9, 2021, 2:46:59 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- ab5498ec
- Parents:
- a33dcd5 (diff), 223ee0d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
libcfa/src/concurrency/io/call.cfa.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io/call.cfa.in
ra33dcd5 ra67279a 132 132 extern int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 133 133 134 extern ssize_t splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags);134 extern ssize_t splice(int fd_in, __off64_t *off_in, int fd_out, __off64_t *off_out, size_t len, unsigned int flags); 135 135 extern ssize_t tee(int fd_in, int fd_out, size_t len, unsigned int flags); 136 136 } … … 366 366 }), 367 367 # CFA_HAVE_IORING_OP_SPLICE 368 Call('SPLICE', 'ssize_t splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags)', {368 Call('SPLICE', 'ssize_t splice(int fd_in, __off64_t *off_in, int fd_out, __off64_t *off_out, size_t len, unsigned int flags)', { 369 369 'splice_fd_in': 'fd_in', 370 370 'splice_off_in': 'off_in ? (__u64)*off_in : (__u64)-1',
Note:
See TracChangeset
for help on using the changeset viewer.