mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
08d57105bb
As indicated by Joseph's comment on BZ#17726, this symbol is most likely a historical ABI accident. This patch make it on both arm and sparc ABIs a compat_symbol. Checked against a build arm-linux-gnueabihf, sparcv9-linux-gnu, adn sparc64-linux-gnu to see if the symbol is still present. * gmon/Versions (libc) [GLIBC_2.31]: New entry. * sysdeps/unix/sysv/linux/arm/profil-counter.h (profil_counter): Make a compat_symbol. * sysdeps/unix/sysv/linux/sparc/profil-counter.h (__profil_counter_global): Likewise.
25 lines
323 B
Plaintext
25 lines
323 B
Plaintext
libc {
|
|
GLIBC_2.0 {
|
|
# functions with special/multiple interfaces
|
|
_mcount;
|
|
|
|
# Profiling support
|
|
__monstartup; _mcleanup; __profile_frequency;
|
|
|
|
# m*
|
|
monstartup;
|
|
|
|
# p*
|
|
profil; profil_counter;
|
|
}
|
|
GLIBC_2.2 {
|
|
# m*
|
|
moncontrol;
|
|
}
|
|
GLIBC_2.2.3 {
|
|
sprofil;
|
|
}
|
|
GLIBC_2.31 {
|
|
}
|
|
}
|