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 /sysdeps/nptl | |
parent | 23d2e5faf0bca6d9b31bef4aa162b95ee64cbfc6 (diff) | |
download | glibc-a635d756ff930724d40fe98539b514ffce002375.tar glibc-a635d756ff930724d40fe98539b514ffce002375.tar.gz glibc-a635d756ff930724d40fe98539b514ffce002375.tar.bz2 glibc-a635d756ff930724d40fe98539b514ffce002375.zip |
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 'sysdeps/nptl')
-rw-r--r-- | sysdeps/nptl/pthread-functions.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/nptl/pthread-functions.h b/sysdeps/nptl/pthread-functions.h index 601fede617..838eabfea5 100644 --- a/sysdeps/nptl/pthread-functions.h +++ b/sysdeps/nptl/pthread-functions.h @@ -30,8 +30,6 @@ struct xid_command; the thread functions. */ struct pthread_functions { - int (*ptr___pthread_attr_init_2_0) (pthread_attr_t *); - int (*ptr___pthread_attr_init_2_1) (pthread_attr_t *); int (*ptr_pthread_attr_getdetachstate) (const pthread_attr_t *, int *); int (*ptr_pthread_attr_setdetachstate) (pthread_attr_t *, int); int (*ptr_pthread_attr_getinheritsched) (const pthread_attr_t *, int *); |