summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/recv.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/recv.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/recv.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/recv.c b/libpthread/nptl/sysdeps/unix/sysv/linux/recv.c
new file mode 100644
index 000000000..144871c53
--- /dev/null
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/recv.c
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2017 Waldemar Brodkorb <wbx@uclibc-ng.org>
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#include <sys/socket.h>
+#include <cancel.h>
+
+ssize_t
+recv (int fd, void *buf, size_t len, int flags)
+{
+ return _syscall4(ssize_t, __NC(recv), int, fd, void* buf,
+ size_t, len, int, flags);
+}
+
+CANCELLABLE_SYSCALL(ssize_t, recv, (int fd, void *buf,
+ size_t len, int flags), (fd, buf, len, flags))
+
+lt_libc_hidden(recv)