1/* Copyright (C) 2021 Free Software Foundation, Inc. 2 Contributed by Oracle. 3 4 This file is part of GNU Binutils. 5 6 This program is free software; you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation; either version 3, or (at your option) 9 any later version. 10 11 This program is distributed in the hope that it will be useful, 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License 17 along with this program; if not, write to the Free Software 18 Foundation, 51 Franklin Street - Fifth Floor, Boston, 19 MA 02110-1301, USA. */ 20 21GLIBC_2.0 { 22 global: 23 pthread_mutex_lock; 24 pthread_mutex_unlock; 25 pthread_join; 26 pthread_create; 27 dlopen; 28 popen; 29 sem_wait; 30 pthread_cond_wait; 31 pthread_cond_timedwait; 32 fopen; 33 fclose; 34 fdopen; 35 fgetpos; 36 fsetpos; 37}; 38 39GLIBC_2.1 { 40 global: 41 sem_wait; 42 pthread_create; 43 dlopen; 44 open64; 45 pread; 46 pwrite; 47 pwrite64; 48 popen; 49 fopen; 50 fclose; 51 fdopen; 52 fgetpos64; 53 fsetpos64; 54}; 55 56GLIBC_2.2 { 57 global: 58 open64; 59 posix_spawn; 60 posix_spawnp; 61 pread; 62 pwrite; 63 pwrite64; 64 timer_create; 65 fgetpos; 66 fsetpos; 67 fgetpos64; 68 fsetpos64; 69}; 70 71GLIBC_2.3.2 { 72 global: 73 pthread_cond_wait; 74 pthread_cond_timedwait; 75}; 76 77GLIBC_2.15 { 78 global: 79 posix_spawn; 80 posix_spawnp; 81}; 82