mapfile.intel-Linux 1.9 KB

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