diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-08-15 19:12:21 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-08-15 19:12:21 +0200 |
commit | a635d756ff930724d40fe98539b514ffce002375 (patch) | |
tree | 944e66eaf822ba61832d6def9669891d5189d200 /nptl/forward.c | |
parent | 23d2e5faf0bca6d9b31bef4aa162b95ee64cbfc6 (diff) | |
download | glibc-a635d756ff930724d40fe98539b514ffce002375.zip glibc-a635d756ff930724d40fe98539b514ffce002375.tar.gz glibc-a635d756ff930724d40fe98539b514ffce002375.tar.bz2 |
nptl: Move pthread_attr_init implementation into libc
Both the original GLIB_2.0 version and the current GLIBC_2.1 version
need to be moved.
Diffstat (limited to 'nptl/forward.c')
-rw-r--r-- | nptl/forward.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/nptl/forward.c b/nptl/forward.c index c7d385b..d52b85b 100644 --- a/nptl/forward.c +++ b/nptl/forward.c @@ -56,14 +56,6 @@ name decl \ FORWARD2 (name, int, decl, params, return defretval) -#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_1) -FORWARD (__pthread_attr_init_2_0, (pthread_attr_t *attr), (attr), 0) -compat_symbol (libc, __pthread_attr_init_2_0, pthread_attr_init, GLIBC_2_0); -#endif - -FORWARD (__pthread_attr_init_2_1, (pthread_attr_t *attr), (attr), 0) -versioned_symbol (libc, __pthread_attr_init_2_1, pthread_attr_init, GLIBC_2_1); - FORWARD (pthread_attr_getdetachstate, (const pthread_attr_t *attr, int *detachstate), (attr, detachstate), 0) |