summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/socketcall.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-08-20 19:50:45 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-08-20 19:50:45 +0200
commit4dd9e35bfd35d3138bc44169baba098005bad51e (patch)
treea4939c43a9c3fe00eb27f023e14acc5e1fe8808c /sysdeps/unix/sysv/linux/socketcall.h
parentbd42a4599d1b6f77bcfe1e4f67b7cbd9e1cb2dfd (diff)
parentf76453c31593957fec1a99b986bfa5506618b79c (diff)
Merge commit 'refs/top-bases/t/bigmem' into t/bigmem
Diffstat (limited to 'sysdeps/unix/sysv/linux/socketcall.h')
-rw-r--r--sysdeps/unix/sysv/linux/socketcall.h57
1 files changed, 56 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/socketcall.h b/sysdeps/unix/sysv/linux/socketcall.h
index 7c2404a490..f652239ef3 100644
--- a/sysdeps/unix/sysv/linux/socketcall.h
+++ b/sysdeps/unix/sysv/linux/socketcall.h
@@ -1,5 +1,5 @@
/* ID for functions called via socketcall system call.
- Copyright (C) 1995-2014 Free Software Foundation, Inc.
+ Copyright (C) 1995-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -25,6 +25,7 @@
We cannot use an enum here because the values are used in assembler
code. */
+#define SOCKOP_invalid -1
#define SOCKOP_socket 1
#define SOCKOP_bind 2
#define SOCKOP_connect 3
@@ -46,4 +47,58 @@
#define SOCKOP_recvmmsg 19
#define SOCKOP_sendmmsg 20
+#define __SOCKETCALL1(name, a1) \
+ INLINE_SYSCALL (socketcall, 2, name, \
+ ((long int [1]) { (long int) (a1) }))
+#define __SOCKETCALL2(name, a1, a2) \
+ INLINE_SYSCALL (socketcall, 2, name, \
+ ((long int [2]) { (long int) (a1), (long int) (a2) }))
+#define __SOCKETCALL3(name, a1, a2, a3) \
+ INLINE_SYSCALL (socketcall, 2, name, \
+ ((long int [3]) { (long int) (a1), (long int) (a2), (long int) (a3) }))
+#define __SOCKETCALL4(name, a1, a2, a3, a4) \
+ INLINE_SYSCALL (socketcall, 2, name, \
+ ((long int [4]) { (long int) (a1), (long int) (a2), (long int) (a3), \
+ (long int) (a4) }))
+#define __SOCKETCALL5(name, a1, a2, a3, a4, a5) \
+ INLINE_SYSCALL (socketcall, 2, name, \
+ ((long int [5]) { (long int) (a1), (long int) (a2), (long int) (a3), \
+ (long int) (a4), (long int) (a5) }))
+#define __SOCKETCALL6(name, a1, a2, a3, a4, a5, a6) \
+ INLINE_SYSCALL (socketcall, 2, name, \
+ ((long int [6]) { (long int) (a1), (long int) (a2), (long int) (a3), \
+ (long int) (a4), (long int) (a5), (long int) (a6) }))
+
+#define __SOCKETCALL_NARGS_X(a,b,c,d,e,f,g,h,n,...) n
+#define __SOCKETCALL_NARGS(...) \
+ __SOCKETCALL_NARGS_X (__VA_ARGS__,7,6,5,4,3,2,1,0,)
+#define __SOCKETCALL_CONCAT_X(a,b) a##b
+#define __SOCKETCALL_CONCAT(a,b) __SOCKETCALL_CONCAT_X (a, b)
+#define __SOCKETCALL_DISP(b,...) \
+ __SOCKETCALL_CONCAT (b,__SOCKETCALL_NARGS(__VA_ARGS__))(__VA_ARGS__)
+
+#define __SOCKETCALL(...) __SOCKETCALL_DISP (__SOCKETCALL, __VA_ARGS__)
+
+
+#define SOCKETCALL(name, args...) \
+ ({ \
+ long int sc_ret = __SOCKETCALL (SOCKOP_##name, args); \
+ sc_ret; \
+ })
+
+
+#if IS_IN (libc)
+# define __pthread_enable_asynccancel __libc_enable_asynccancel
+# define __pthread_disable_asynccancel __libc_disable_asynccancel
+#endif
+
+#define SOCKETCALL_CANCEL(name, args...) \
+ ({ \
+ int oldtype = LIBC_CANCEL_ASYNC (); \
+ long int sc_ret = __SOCKETCALL (SOCKOP_##name, args); \
+ LIBC_CANCEL_RESET (oldtype); \
+ sc_ret; \
+ })
+
+
#endif /* sys/socketcall.h */