1/* Copyright (C) 2021-2024 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 dlclose; 24 dlopen; 25 fclose; 26 fdopen; 27 fgetpos; 28 fopen; 29 fsetpos; 30 popen; 31 pthread_cond_timedwait; 32 pthread_cond_wait; 33 pthread_create; 34 pthread_join; 35 pthread_sigmask; 36 sem_wait; 37 timer_create; 38}; 39 40GLIBC_2.1 { 41 global: 42 dlopen; 43 fclose; 44 fdopen; 45 fgetpos64; 46 fopen; 47 fsetpos64; 48 popen; 49 pthread_create; 50 sem_wait; 51} GLIBC_2.0; 52 53GLIBC_2.2 { 54 global: 55 fgetpos; 56 fgetpos64; 57 fsetpos; 58 fsetpos64; 59 open64; 60 posix_spawn; 61 posix_spawnp; 62 pread; 63 timer_create; 64} GLIBC_2.1; 65 66GLIBC_2.2.5 { 67 global: 68 dlclose; 69 dlopen; 70 fclose; 71 fdopen; 72 fgetpos; 73 fgetpos64; 74 fopen; 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; 88} GLIBC_2.2 ; 89 90GLIBC_2.3.2 { 91 global: 92 pthread_cond_wait; 93 pthread_cond_timedwait; 94} GLIBC_2.2.5; 95 96GLIBC_2.3.3 { 97 global: 98 timer_create; 99} GLIBC_2.3.2; 100 101GLIBC_2.15 { 102 global: 103 posix_spawn; 104 posix_spawnp; 105} GLIBC_2.3.3; 106 107GLIBC_2.17 { 108 global: 109 dlclose; 110 dlopen; 111 fclose; 112 fdopen; 113 fgetpos; 114 fgetpos64; 115 fopen; 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; 129} GLIBC_2.15; 130 131GLIBC_2.32 { 132 global: 133 pthread_sigmask; 134} GLIBC_2.17; 135 136GLIBC_2.34 { 137 global: 138 dlclose; 139 dlopen; 140 pthread_create; 141 pthread_join; 142 sem_wait; 143 timer_create; 144} GLIBC_2.32; 145 146