File tree 2 files changed +62
-42
lines changed
2 files changed +62
-42
lines changed Original file line number Diff line number Diff line change 20
20
21
21
GLIBC_2.0 {
22
22
global:
23
+ dlclose;
24
+ dlopen;
25
+ fclose;
26
+ fdopen;
27
+ fgetpos;
28
+ fopen;
29
+ fsetpos;
30
+ popen;
31
+ pthread_cond_timedwait;
32
+ pthread_cond_wait;
23
33
pthread_create;
24
- pthread_mutex_lock;
25
- pthread_mutex_unlock;
34
+ pthread_join;
26
35
pthread_sigmask;
27
- popen;
36
+ sem_wait;
37
+ timer_create;
28
38
};
29
39
30
40
GLIBC_2.1 {
31
41
global:
32
- pthread_create;
42
+ dlopen;
43
+ fclose;
44
+ fdopen;
45
+ fgetpos64;
46
+ fopen;
47
+ fsetpos64;
33
48
popen;
49
+ pthread_create;
50
+ sem_wait;
34
51
} GLIBC_2.0;
35
52
36
53
GLIBC_2.2 {
37
54
global:
55
+ fgetpos;
56
+ fgetpos64;
57
+ fsetpos;
58
+ fsetpos64;
38
59
open64;
39
60
posix_spawn;
40
61
posix_spawnp;
41
62
pread;
42
- pwrite;
43
- pwrite64;
44
63
timer_create;
45
- fgetpos;
46
- fsetpos;
47
- fgetpos64;
48
- fsetpos64;
49
64
} GLIBC_2.1;
50
65
51
66
GLIBC_2.2.5 {
52
67
global:
53
- posix_spawn;
54
- posix_spawnp;
55
- pthread_mutex_lock;
56
- pthread_mutex_unlock;
57
- pthread_sigmask;
58
- pthread_join;
59
- sem_wait;
60
- pthread_create;
68
+ dlclose;
61
69
dlopen;
62
- popen;
63
- timer_create;
64
- pthread_cond_wait;
65
- pthread_cond_timedwait;
66
- fopen;
67
70
fclose;
68
71
fdopen;
69
72
fgetpos;
73
+ fgetpos64;
74
+ fopen;
70
75
fsetpos;
76
+ fsetpos64;
77
+ popen;
78
+ posix_spawn;
79
+ posix_spawnp;
80
+ pthread_cond_timedwait;
81
+ pthread_cond_wait;
82
+ pthread_create;
83
+ pthread_join;
84
+ pthread_sigmask;
85
+ sem_wait;
86
+ timer_create;
87
+ timer_create;
71
88
} GLIBC_2.2 ;
72
89
73
90
GLIBC_2.3.2 {
@@ -89,24 +106,26 @@ GLIBC_2.15 {
89
106
90
107
GLIBC_2.17 {
91
108
global:
92
- posix_spawn;
93
- posix_spawnp;
94
- pthread_mutex_lock;
95
- pthread_mutex_unlock;
96
- pthread_sigmask;
97
- pthread_join;
98
- sem_wait;
99
- pthread_create;
109
+ dlclose;
100
110
dlopen;
101
- popen;
102
- timer_create;
103
- pthread_cond_wait;
104
- pthread_cond_timedwait;
105
- fopen;
106
111
fclose;
107
112
fdopen;
108
113
fgetpos;
114
+ fgetpos64;
115
+ fopen;
109
116
fsetpos;
117
+ fsetpos64;
118
+ popen;
119
+ posix_spawn;
120
+ posix_spawnp;
121
+ pthread_cond_timedwait;
122
+ pthread_cond_wait;
123
+ pthread_create;
124
+ pthread_join;
125
+ pthread_sigmask;
126
+ sem_wait;
127
+ timer_create;
128
+ timer_create;
110
129
} GLIBC_2.15;
111
130
112
131
GLIBC_2.32 {
@@ -116,10 +135,11 @@ GLIBC_2.32 {
116
135
117
136
GLIBC_2.34 {
118
137
global:
119
- pthread_join;
120
- sem_wait;
121
- pthread_create;
138
+ dlclose;
122
139
dlopen;
140
+ pthread_create;
141
+ pthread_join;
142
+ sem_wait;
123
143
timer_create;
124
144
} GLIBC_2.32;
125
145
Original file line number Diff line number Diff line change @@ -615,9 +615,9 @@ gprofng_pthread_mutex_lock (int (real_func) (pthread_mutex_t *),
615
615
return gprofng_pthread_mutex_lock (real_f, mp); \
616
616
}
617
617
618
- DCL_FUNC_VER (DCL_PTHREAD_MUTEX_LOCK , pthread_mutex_lock_2_17 , timer_create @GLIBC_2 .17 )
619
- DCL_FUNC_VER (DCL_PTHREAD_MUTEX_LOCK , pthread_mutex_lock_2_2_5 , timer_create @GLIBC_2 .2 .5 )
620
- DCL_FUNC_VER (DCL_PTHREAD_MUTEX_LOCK , pthread_mutex_lock_2_0 , timer_create @GLIBC_2 .0 )
618
+ DCL_FUNC_VER (DCL_PTHREAD_MUTEX_LOCK , pthread_mutex_lock_2_17 , pthread_mutex_lock @GLIBC_2 .17 )
619
+ DCL_FUNC_VER (DCL_PTHREAD_MUTEX_LOCK , pthread_mutex_lock_2_2_5 , pthread_mutex_lock @GLIBC_2 .2 .5 )
620
+ DCL_FUNC_VER (DCL_PTHREAD_MUTEX_LOCK , pthread_mutex_lock_2_0 , pthread_mutex_lock @GLIBC_2 .0 )
621
621
DCL_PTHREAD_MUTEX_LOCK (pthread_mutex_lock , CALL_REAL (pthread_mutex_lock ))
622
622
623
623
/*------------------------------------------------------------- pthread_cond_wait */
You can’t perform that action at this time.
0 commit comments