1/* 2 * $FreeBSD$ 3 */ 4 5/* 6 * Use the same naming scheme as libc. 7 */ 8FBSD_1.0 { 9global: 10 __error; 11 accept; 12 aio_suspend; 13 close; 14 connect; 15 creat; 16 execve; 17 fcntl; 18 fork; 19 fsync; 20 msync; 21 nanosleep; 22 open; 23 pause; 24 poll; 25 pselect; 26 pthread_atfork; 27 pthread_barrier_destroy; 28 pthread_barrier_init; 29 pthread_barrier_wait; 30 pthread_barrierattr_destroy; 31 pthread_barrierattr_getpshared; 32 pthread_barrierattr_init; 33 pthread_barrierattr_setpshared; 34 pthread_attr_destroy; 35 pthread_attr_get_np; 36 pthread_attr_getdetachstate; 37 pthread_attr_getguardsize; 38 pthread_attr_getinheritsched; 39 pthread_attr_getschedparam; 40 pthread_attr_getschedpolicy; 41 pthread_attr_getscope; 42 pthread_attr_getstack; 43 pthread_attr_getstackaddr; 44 pthread_attr_getstacksize; 45 pthread_attr_init; 46 pthread_attr_setcreatesuspend_np; 47 pthread_attr_setdetachstate; 48 pthread_attr_setguardsize; 49 pthread_attr_setinheritsched; 50 pthread_attr_setschedparam; 51 pthread_attr_setschedpolicy; 52 pthread_attr_setscope; 53 pthread_attr_setstack; 54 pthread_attr_setstackaddr; 55 pthread_attr_setstacksize; 56 pthread_cancel; 57 pthread_cleanup_pop; 58 pthread_cleanup_push; 59 pthread_cond_broadcast; 60 pthread_cond_destroy; 61 pthread_cond_init; 62 pthread_cond_signal; 63 pthread_cond_timedwait; 64 pthread_cond_wait; 65 pthread_condattr_destroy; 66 pthread_condattr_getclock; 67 pthread_condattr_getpshared; 68 pthread_condattr_init; 69 pthread_condattr_setclock; 70 pthread_condattr_setpshared; 71 pthread_create; 72 pthread_detach; 73 pthread_equal; 74 pthread_exit; 75 pthread_getconcurrency; 76 pthread_getprio; 77 pthread_getschedparam; 78 pthread_getspecific; 79 pthread_join; 80 pthread_key_create; 81 pthread_key_delete; 82 pthread_kill; 83 pthread_main_np; 84 pthread_multi_np; 85 pthread_mutex_destroy; 86 pthread_mutex_getprioceiling; 87 pthread_mutex_init; 88 pthread_mutex_lock; 89 pthread_mutex_setprioceiling; 90 pthread_mutex_timedlock; 91 pthread_mutex_trylock; 92 pthread_mutex_unlock; 93 pthread_mutexattr_destroy; 94 pthread_mutexattr_getkind_np; 95 pthread_mutexattr_getprioceiling; 96 pthread_mutexattr_getpshared; 97 pthread_mutexattr_getprotocol; 98 pthread_mutexattr_gettype; 99 pthread_mutexattr_init; 100 pthread_mutexattr_setkind_np; 101 pthread_mutexattr_setprioceiling; 102 pthread_mutexattr_setprotocol; 103 pthread_mutexattr_setpshared; 104 pthread_mutexattr_settype; 105 pthread_once; 106 pthread_resume_all_np; 107 pthread_resume_np; 108 pthread_rwlock_destroy; 109 pthread_rwlock_init; 110 pthread_rwlock_rdlock; 111 pthread_rwlock_timedrdlock; 112 pthread_rwlock_timedwrlock; 113 pthread_rwlock_tryrdlock; 114 pthread_rwlock_trywrlock; 115 pthread_rwlock_unlock; 116 pthread_rwlock_wrlock; 117 pthread_rwlockattr_destroy; 118 pthread_rwlockattr_getpshared; 119 pthread_rwlockattr_init; 120 pthread_rwlockattr_setpshared; 121 pthread_self; 122 pthread_set_name_np; 123 pthread_setcancelstate; 124 pthread_setcanceltype; 125 pthread_setconcurrency; 126 pthread_setprio; 127 pthread_setschedparam; 128 pthread_setspecific; 129 pthread_sigmask; 130 pthread_single_np; 131 pthread_spin_destroy; 132 pthread_spin_init; 133 pthread_spin_lock; 134 pthread_spin_trylock; 135 pthread_spin_unlock; 136 pthread_suspend_all_np; 137 pthread_suspend_np; 138 pthread_switch_add_np; 139 pthread_switch_delete_np; 140 pthread_testcancel; 141 pthread_timedjoin_np; 142 pthread_yield; 143 raise; 144 read; 145 readv; 146 recvfrom; 147 recvmsg; 148 select; 149 sem_destroy; 150 sem_getvalue; 151 sem_init; 152 sem_post; 153 sem_timedwait; 154 sem_trywait; 155 sem_wait; 156 sendmsg; 157 sendto; 158 sigaction; 159 sigprocmask; 160 sigsuspend; 161 sigwait; 162 sigwaitinfo; 163 sigtimedwait; 164 sleep; 165 system; 166 tcdrain; 167 usleep; 168 vfork; 169 wait; 170 wait3; 171 wait4; 172 waitpid; 173 write; 174 writev; 175local: 176 *; 177}; 178 179/* 180 * List the private interfaces reserved for use in FreeBSD libraries. 181 * These are not part of our application ABI. 182 */ 183FBSDprivate_1.0 { 184global: 185 ___creat; 186 ___pause; 187 ___pselect; 188 ___sleep; 189 ___system; 190 ___tcdrain; 191 ___usleep; 192 ___wait; 193 ___waitpid; 194 __accept; 195 __aio_suspend; 196 __close; 197 __connect; 198 __fcntl; 199 __fsync; 200 __msync; 201 __nanosleep; 202 __open; 203 __poll; 204 __pthread_cond_timedwait; 205 __pthread_cond_wait; 206 __pthread_mutex_init; 207 __pthread_mutex_lock; 208 __pthread_mutex_timedlock; 209 __pthread_mutex_trylock; 210 __read; 211 __readv; 212 __recvfrom; 213 __recvmsg; 214 __select; 215 __sendmsg; 216 __sendto; 217 __sigsuspend; 218 __sigtimedwait; 219 __sigwait; 220 __sigwaitinfo; 221 __wait3; 222 __wait4; 223 __write; 224 __writev; 225 _fork; 226 _pthread_atfork; 227 _pthread_barrier_destroy; 228 _pthread_barrier_init; 229 _pthread_barrier_wait; 230 _pthread_barrierattr_destroy; 231 _pthread_barrierattr_getpshared; 232 _pthread_barrierattr_init; 233 _pthread_barrierattr_setpshared; 234 _pthread_attr_destroy; 235 _pthread_attr_get_np; 236 _pthread_attr_getdetachstate; 237 _pthread_attr_getguardsize; 238 _pthread_attr_getinheritsched; 239 _pthread_attr_getschedparam; 240 _pthread_attr_getschedpolicy; 241 _pthread_attr_getscope; 242 _pthread_attr_getstack; 243 _pthread_attr_getstackaddr; 244 _pthread_attr_getstacksize; 245 _pthread_attr_init; 246 _pthread_attr_setcreatesuspend_np; 247 _pthread_attr_setdetachstate; 248 _pthread_attr_setguardsize; 249 _pthread_attr_setinheritsched; 250 _pthread_attr_setschedparam; 251 _pthread_attr_setschedpolicy; 252 _pthread_attr_setscope; 253 _pthread_attr_setstack; 254 _pthread_attr_setstackaddr; 255 _pthread_attr_setstacksize; 256 _pthread_cancel; 257 _pthread_cleanup_pop; 258 _pthread_cleanup_push; 259 _pthread_cond_broadcast; 260 _pthread_cond_destroy; 261 _pthread_cond_init; 262 _pthread_cond_signal; 263 _pthread_cond_timedwait; 264 _pthread_cond_wait; 265 _pthread_condattr_destroy; 266 _pthread_condattr_getclock; 267 _pthread_condattr_getpshared; 268 _pthread_condattr_init; 269 _pthread_condattr_setclock; 270 _pthread_condattr_setpshared; 271 _pthread_create; 272 _pthread_detach; 273 _pthread_equal; 274 _pthread_exit; 275 _pthread_getconcurrency; 276 _pthread_getprio; 277 _pthread_getschedparam; 278 _pthread_getspecific; 279 _pthread_join; 280 _pthread_key_create; 281 _pthread_key_delete; 282 _pthread_kill; 283 _pthread_main_np; 284 _pthread_multi_np; 285 _pthread_mutex_destroy; 286 _pthread_mutex_getprioceiling; 287 _pthread_mutex_init; 288 _pthread_mutex_lock; 289 _pthread_mutex_setprioceiling; 290 _pthread_mutex_timedlock; 291 _pthread_mutex_trylock; 292 _pthread_mutex_unlock; 293 _pthread_mutexattr_destroy; 294 _pthread_mutexattr_getkind_np; 295 _pthread_mutexattr_getprioceiling; 296 _pthread_mutexattr_getprotocol; 297 _pthread_mutexattr_getpshared; 298 _pthread_mutexattr_gettype; 299 _pthread_mutexattr_init; 300 _pthread_mutexattr_setkind_np; 301 _pthread_mutexattr_setprioceiling; 302 _pthread_mutexattr_setprotocol; 303 _pthread_mutexattr_setpshared; 304 _pthread_mutexattr_settype; 305 _pthread_once; 306 _pthread_resume_all_np; 307 _pthread_resume_np; 308 _pthread_rwlock_destroy; 309 _pthread_rwlock_init; 310 _pthread_rwlock_rdlock; 311 _pthread_rwlock_timedrdlock; 312 _pthread_rwlock_timedwrlock; 313 _pthread_rwlock_tryrdlock; 314 _pthread_rwlock_trywrlock; 315 _pthread_rwlock_unlock; 316 _pthread_rwlock_wrlock; 317 _pthread_rwlockattr_destroy; 318 _pthread_rwlockattr_getpshared; 319 _pthread_rwlockattr_init; 320 _pthread_rwlockattr_setpshared; 321 _pthread_self; 322 _pthread_set_name_np; 323 _pthread_setcancelstate; 324 _pthread_setcanceltype; 325 _pthread_setconcurrency; 326 _pthread_setprio; 327 _pthread_setschedparam; 328 _pthread_setspecific; 329 _pthread_sigmask; 330 _pthread_single_np; 331 _pthread_spin_destroy; 332 _pthread_spin_init; 333 _pthread_spin_lock; 334 _pthread_spin_trylock; 335 _pthread_spin_unlock; 336 _pthread_suspend_all_np; 337 _pthread_suspend_np; 338 _pthread_switch_add_np; 339 _pthread_switch_delete_np; 340 _pthread_testcancel; 341 _pthread_timedjoin_np; 342 _pthread_yield; 343 _raise; 344 _sem_destroy; 345 _sem_getvalue; 346 _sem_init; 347 _sem_post; 348 _sem_timedwait; 349 _sem_trywait; 350 _sem_wait; 351 _sigaction; 352 _sigprocmask; 353 _sigsuspend; 354 _sigtimedwait; 355 _sigwait; 356 _sigwaitinfo; 357 _spinlock; 358 _spinlock_debug; 359 _spinunlock; 360 _vfork; 361 362 /* Debugger needs these. */ 363 _libthr_debug; 364 _thread_active_threads; 365 _thread_bp_create; 366 _thread_bp_death; 367 _thread_event_mask; 368 _thread_keytable; 369 _thread_last_event; 370 _thread_list; 371 _thread_max_keys; 372 _thread_off_attr_flags; 373 _thread_off_dtv; 374 _thread_off_event_buf; 375 _thread_off_event_mask; 376 _thread_off_key_allocated; 377 _thread_off_key_destructor; 378 _thread_off_linkmap; 379 _thread_off_next; 380 _thread_off_report_events; 381 _thread_off_state; 382 _thread_off_tcb; 383 _thread_off_tid; 384 _thread_off_tlsindex; 385 _thread_size_key; 386 _thread_state_running; 387 _thread_state_zoombie; 388local: 389 *; 390}; 391