1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

alpha: Do non-default symbols in pt-vfork.S

This commit is contained in:
Richard Henderson
2014-05-25 09:04:54 -07:00
parent 900e445fad
commit 82aab97cbf
3 changed files with 21 additions and 6 deletions

View File

@ -32,3 +32,12 @@
#include <vfork.S>
#endif
#if SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_20)
compat_symbol (libpthread, __libc_vfork, vfork, GLIBC_2_0);
#endif
#if SHLIB_COMPAT (libpthread, GLIBC_2_1_2, GLIBC_2_20)
strong_alias (__libc_vfork, __vfork_compat)
compat_symbol (libpthread, __vfork_compat, __vfork, GLIBC_2_1_2);
#endif