blob: e9ac6093e5188f6776e30a914dd2ca7e5b195e37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
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; shutdown; socket; socketpair;
}
GLIBC_2.2.4 {
# Addition from P1003.1-200x
sockatmark;
}
}
|