blob: 3c4fa2742ecff0f3632575c4049bf5506a1e3c75 (
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
40
41
42
43
44
45
46
47
|
libc {
GLIBC_2.0 {
dladdr;
dlclose;
dlerror;
dlsym;
}
GLIBC_2.1 {
dlvsym;
}
GLIBC_2.3.3 {
dladdr1;
dlinfo;
}
GLIBC_2.3.4 {
dlmopen;
}
GLIBC_2.34 {
dladdr1;
dladdr;
dlclose;
dlerror;
dlinfo;
dlmopen;
dlsym;
dlvsym;
}
GLIBC_PRIVATE {
__libc_dlerror_result;
_dlerror_run;
_dlfcn_hook;
}
}
libdl {
GLIBC_2.0 {
dlopen;
}
GLIBC_2.1 {
dlopen;
}
GLIBC_2.3.3 {
__libdl_version_placeholder;
}
GLIBC_2.3.4 {
__libdl_version_placeholder;
}
}
|