Chromium Code Reviews| Index: fusl/src/linux/vmsplice.c |
| diff --git a/fusl/src/linux/vmsplice.c b/fusl/src/linux/vmsplice.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ebf13ee44edfbefa1cc5bc2cb9ead200f4781d3b |
| --- /dev/null |
| +++ b/fusl/src/linux/vmsplice.c |
| @@ -0,0 +1,8 @@ |
| +#define _GNU_SOURCE |
| +#include <fcntl.h> |
| +#include "syscall.h" |
| + |
| +ssize_t vmsplice(int fd, const struct iovec *iov, size_t cnt, unsigned flags) |
| +{ |
| + return syscall(SYS_vmsplice, fd, iov, cnt, flags); |
| +} |