initial commit
[glibc.git] / fbtl / Versions
1 libc {
2 GLIBC_2.0 {
3 pthread_attr_destroy; pthread_attr_init;
4 pthread_attr_getdetachstate; pthread_attr_setdetachstate;
5 pthread_attr_getinheritsched; pthread_attr_setinheritsched;
6 pthread_attr_getschedparam; pthread_attr_setschedparam;
7 pthread_attr_getschedpolicy; pthread_attr_setschedpolicy;
8 pthread_attr_getscope; pthread_attr_setscope;
9 pthread_condattr_destroy; pthread_condattr_init;
10 pthread_cond_broadcast; pthread_cond_destroy;
11 pthread_cond_init; pthread_cond_signal; pthread_cond_wait;
12 pthread_cond_timedwait;
13 pthread_equal; pthread_exit;
14 pthread_getschedparam; pthread_setschedparam;
15 pthread_mutex_destroy; pthread_mutex_init;
16 pthread_mutex_lock; pthread_mutex_unlock;
17 pthread_self;
18 pthread_setcancelstate; pthread_setcanceltype;
19 }
20 GLIBC_2.1 {
21 pthread_attr_init;
22 }
23 GLIBC_2.3.2 {
24 # Changed pthread_cond_t.
25 pthread_cond_init; pthread_cond_destroy;
26 pthread_cond_wait; pthread_cond_signal;
27 pthread_cond_broadcast; pthread_cond_timedwait;
28 }
29 GLIBC_PRIVATE {
30 __libc_alloca_cutoff;
31 # Internal libc interface to libpthread
32 __libc_dl_error_tsd;
33 }
34 }
35
36 libpthread {
37 GLIBC_2.0 {
38 pthread_create; pthread_join; pthread_self; pthread_equal;
39 pthread_exit; pthread_detach;
40
41 pthread_getschedparam; pthread_setschedparam;
42
43 pthread_attr_init; pthread_attr_destroy;
44 pthread_attr_getdetachstate; pthread_attr_setdetachstate;
45 pthread_attr_getschedparam; pthread_attr_setschedparam;
46 pthread_attr_getschedpolicy; pthread_attr_setschedpolicy;
47 pthread_attr_getinheritsched; pthread_attr_setinheritsched;
48 pthread_attr_getscope; pthread_attr_setscope;
49
50 pthread_mutex_init; pthread_mutex_destroy;
51 pthread_mutex_lock; pthread_mutex_trylock; pthread_mutex_unlock;
52
53 pthread_mutexattr_init; pthread_mutexattr_destroy;
54
55 pthread_cond_init; pthread_cond_destroy;
56 pthread_cond_wait; pthread_cond_timedwait;
57 pthread_cond_signal; pthread_cond_broadcast;
58
59 pthread_condattr_destroy; pthread_condattr_init;
60
61 pthread_cancel; pthread_testcancel;
62 pthread_setcancelstate; pthread_setcanceltype;
63
64 pthread_sigmask; pthread_kill;
65
66 pthread_key_create; pthread_key_delete;
67 pthread_getspecific; pthread_setspecific;
68
69 pthread_once;
70
71 pthread_atfork;
72
73 flockfile; funlockfile; ftrylockfile;
74
75 # Non-standard POSIX1.x functions.
76 pthread_mutexattr_getkind_np; pthread_mutexattr_setkind_np;
77
78 # Protected names for functions used in other shared objects.
79 __pthread_mutex_init; __pthread_mutex_destroy;
80 __pthread_mutex_lock; __pthread_mutex_trylock; __pthread_mutex_unlock;
81 __pthread_mutexattr_init; __pthread_mutexattr_destroy;
82 __pthread_mutexattr_settype;
83 __pthread_key_create; __pthread_getspecific; __pthread_setspecific;
84 __pthread_once; __pthread_atfork;
85 _IO_flockfile; _IO_ftrylockfile; _IO_funlockfile;
86
87 # Hidden entry point (through macros).
88 #_pthread_cleanup_pop; _pthread_cleanup_pop_restore; _pthread_cleanup_push;
89 #_pthread_cleanup_push_defer;
90
91 # Semaphores.
92 sem_destroy; sem_getvalue; sem_init; sem_post; sem_trywait; sem_wait;
93
94 # Special fork handling.
95 fork; __fork; vfork;
96
97 # Cancellation points.
98 close; __close; fcntl; __fcntl; read; __read; write; __write; accept;
99 connect; __connect; recv; recvfrom; recvmsg; send; __send; sendmsg; sendto;
100 fsync; lseek; __lseek; msync; nanosleep; open; __open; pause; tcdrain;
101 system; wait; __wait; waitpid;
102
103 # Hidden entry point (through macros).
104 _pthread_cleanup_push; _pthread_cleanup_pop;
105 _pthread_cleanup_push_defer; _pthread_cleanup_pop_restore;
106
107 pthread_kill_other_threads_np;
108
109 # The error functions.
110 __errno_location; __h_errno_location;
111
112 # Functions which previously have been overwritten.
113 sigwait; sigaction; __sigaction; _exit; _Exit; longjmp; siglongjmp;
114 raise;
115 }
116
117 GLIBC_2.1 {
118 pthread_create;
119 pthread_attr_init;
120
121 pthread_attr_getguardsize; pthread_attr_setguardsize;
122 pthread_attr_getstackaddr; pthread_attr_setstackaddr;
123 pthread_attr_getstacksize; pthread_attr_setstacksize;
124
125 pthread_mutexattr_gettype; pthread_mutexattr_settype;
126
127 pthread_rwlock_init; pthread_rwlock_destroy;
128 pthread_rwlock_rdlock; pthread_rwlock_wrlock; pthread_rwlock_unlock;
129 pthread_rwlock_tryrdlock; pthread_rwlock_trywrlock;
130
131 pthread_rwlockattr_init; pthread_rwlockattr_destroy;
132 pthread_rwlockattr_getpshared; pthread_rwlockattr_setpshared;
133 pthread_rwlockattr_getkind_np; pthread_rwlockattr_setkind_np;
134
135 pthread_getconcurrency; pthread_setconcurrency;
136
137 # Semaphores.
138 sem_destroy; sem_getvalue; sem_init; sem_post; sem_trywait; sem_wait;
139
140 __libc_current_sigrtmin; __libc_current_sigrtmax;
141 __libc_allocate_rtsig;
142 }
143
144 GLIBC_2.1.1 {
145 sem_close; sem_open; sem_unlink;
146 }
147
148 GLIBC_2.1.2 {
149 __vfork;
150 }
151
152 GLIBC_2.2 {
153 pthread_mutexattr_getpshared; pthread_mutexattr_setpshared;
154
155 pthread_condattr_getpshared; pthread_condattr_setpshared;
156
157 # New functions from IEEE Std. 1003.1-2001.
158 pthread_mutex_timedlock;
159
160 pthread_rwlock_timedrdlock; pthread_rwlock_timedwrlock;
161
162 pthread_attr_getstack; pthread_attr_setstack;
163
164 pthread_spin_destroy; pthread_spin_init; pthread_spin_lock;
165 pthread_spin_trylock; pthread_spin_unlock;
166
167 pthread_barrier_init; pthread_barrier_destroy; pthread_barrier_wait;
168 pthread_barrierattr_destroy; pthread_barrierattr_init;
169 pthread_barrierattr_setpshared;
170
171 sem_timedwait;
172
173 pthread_yield;
174
175 pthread_getcpuclockid;
176
177 # Cancellation points.
178 lseek64; open64; __open64; pread; pread64; __pread64; pwrite; pwrite64;
179 __pwrite64;
180
181 # Names used internally.
182 __pthread_rwlock_init; __pthread_rwlock_destroy;
183 __pthread_rwlock_rdlock; __pthread_rwlock_tryrdlock;
184 __pthread_rwlock_wrlock; __pthread_rwlock_trywrlock;
185 __pthread_rwlock_unlock;
186
187 __res_state;
188 }
189
190 GLIBC_2.2.3 {
191 # Extensions.
192 pthread_getattr_np;
193 }
194
195 GLIBC_2.2.6 {
196 # Cancellation wrapper
197 __nanosleep;
198 }
199
200 GLIBC_2.3.2 {
201 # Changed pthread_cond_t.
202 pthread_cond_init; pthread_cond_destroy;
203 pthread_cond_wait; pthread_cond_timedwait;
204 pthread_cond_signal; pthread_cond_broadcast;
205 }
206
207 GLIBC_2.3.3 {
208 # 1003.1-2001 function accidentally left out in 2.2.
209 pthread_barrierattr_getpshared;
210
211 # Unix CS option.
212 pthread_condattr_getclock; pthread_condattr_setclock;
213
214 # Proposed API extensions.
215 pthread_tryjoin_np; pthread_timedjoin_np;
216
217 # New cancellation cleanup handling.
218 __pthread_register_cancel; __pthread_unregister_cancel;
219 __pthread_register_cancel_defer; __pthread_unregister_cancel_restore;
220 __pthread_unwind_next;
221 __pthread_cleanup_routine;
222
223 # affinity interfaces without size parameter
224 # have not been in linuxthreads and
225 # will be overriden by version from GLIBC_2.3.4
226 pthread_getaffinity_np; pthread_setaffinity_np;
227 pthread_attr_getaffinity_np; pthread_attr_setaffinity_np;
228 }
229
230 GLIBC_2.3.4 {
231 # New affinity interfaces.
232 pthread_getaffinity_np; pthread_setaffinity_np;
233 pthread_attr_getaffinity_np; pthread_attr_setaffinity_np;
234 }
235
236 GLIBC_2.12 {
237 pthread_setname_np; pthread_getname_np;
238 };
239
240 GLIBC_2.18 {
241 pthread_getattr_default_np;
242 pthread_setattr_default_np;
243 }
244
245 GLIBC_PRIVATE {
246 __pthread_initialize_minimal;
247 __pthread_clock_gettime; __pthread_clock_settime;
248 __pthread_unwind; __pthread_get_minstack;
249 __shm_directory;
250 }
251 }