From 53147f902b7f84d8108bd9738641a53722a4a205 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 23 Jul 2012 16:50:56 -0400 Subject: add splice and vmsplice syscalls based on patches by orc and Isaac Dunham. --- src/linux/splice.c | 8 ++++++++ src/linux/vmsplice.c | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/linux/splice.c create mode 100644 src/linux/vmsplice.c (limited to 'src') diff --git a/src/linux/splice.c b/src/linux/splice.c new file mode 100644 index 00000000..78b6220d --- /dev/null +++ b/src/linux/splice.c @@ -0,0 +1,8 @@ +#define _GNU_SOURCE +#include +#include "syscall.h" + +ssize_t splice(int fd_in, off_t *off_in, int fd_out, off_t *off_out, size_t len, unsigned flags) +{ + return syscall(SYS_splice, fd_in, off_in, fd_out, off_out, len, flags); +} diff --git a/src/linux/vmsplice.c b/src/linux/vmsplice.c new file mode 100644 index 00000000..ebf13ee4 --- /dev/null +++ b/src/linux/vmsplice.c @@ -0,0 +1,8 @@ +#define _GNU_SOURCE +#include +#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); +} -- cgit v1.2.1