summaryrefslogtreecommitdiff
path: root/socket/Versions
diff options
context:
space:
mode:
Diffstat (limited to 'socket/Versions')
-rw-r--r--socket/Versions35
1 files changed, 35 insertions, 0 deletions
diff --git a/socket/Versions b/socket/Versions
new file mode 100644
index 0000000000..36c7653ac3
--- /dev/null
+++ b/socket/Versions
@@ -0,0 +1,35 @@
+libc {
+ GLIBC_2.0 {
+ # functions which have an additional interface since they are
+ # are cancelable.
+ __libc_accept; __libc_send; __libc_recvfrom;
+ __libc_recvmsg; __libc_sendmsg; __libc_recv; __libc_sendto; __libc_connect;
+
+ # functions used in other libraries
+ __connect; __send;
+
+ # a*
+ accept;
+
+ # b*
+ bind;
+
+ # c*
+ connect;
+
+ # g*
+ getpeername; getsockname; getsockopt;
+
+ # i*
+ isfdtype;
+
+ # l*
+ listen;
+
+ # r*
+ recv; recvfrom; recvmsg;
+
+ # s*
+ send; sendmsg; sendto; setsockopt; socket; socketpair;
+ }
+}