From 141138c41b5b1cbb74c61690c9b6dbacce4e1983 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 9 Sep 2012 16:09:29 -0400 Subject: add linux ppoll syscall wrapper --- src/linux/ppoll.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/linux/ppoll.c (limited to 'src/linux') diff --git a/src/linux/ppoll.c b/src/linux/ppoll.c new file mode 100644 index 00000000..8f4aab9b --- /dev/null +++ b/src/linux/ppoll.c @@ -0,0 +1,9 @@ +#define _GNU_SOURCE +#include +#include "syscall.h" + +int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask) +{ + struct timespec tmp = *to; + return syscall_cp(SYS_ppoll, fds, n, &tmp, mask); +} -- cgit v1.2.1