summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/connect.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/connect.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/connect.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/connect.c b/libpthread/nptl/sysdeps/unix/sysv/linux/connect.c
new file mode 100644
index 000000000..e0d022f45
--- /dev/null
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/connect.c
@@ -0,0 +1,23 @@
+/*
+ * 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>
+
+#ifndef __NR_connect
+#error Missing definition of NR_connect needed for cancellation.
+#endif
+
+int
+connect (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len)
+{
+ return _syscall3(int, __NC(connect), int, fd, __CONST_SOCKADDR_ARG,
+ addr.__sockaddr__, socklen_t, len);
+}
+
+CANCELLABLE_SYSCALL(int, connect, (int fd, __CONST_SOCKADDR_ARG addr,
+ socklen_t len), (fd, addr, len))
+
+lt_libc_hidden(connect)