Changeset a5040fe for libcfa/src/concurrency/io
- Timestamp:
- Mar 4, 2021, 12:08:57 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8e4aa05
- Parents:
- e0b8d66d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io/call.cfa.in
re0b8d66d ra5040fe 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.