diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-05-15 22:49:46 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-06-02 10:32:09 +0200 |
commit | dd05e154accfd3b9cd5984fa8419ffbd4edd90da (patch) | |
tree | ec1269239ec695e773e54d4aa0e0b14497f10ab5 /nptl/pthreadP.h | |
parent | 8c64cc78bcce284b985d26a1393bdfcedcb1d128 (diff) | |
download | glibc-dd05e154accfd3b9cd5984fa8419ffbd4edd90da.tar glibc-dd05e154accfd3b9cd5984fa8419ffbd4edd90da.tar.gz glibc-dd05e154accfd3b9cd5984fa8419ffbd4edd90da.tar.bz2 glibc-dd05e154accfd3b9cd5984fa8419ffbd4edd90da.zip |
nptl: Add internal alias __pthread_getattr_default_np
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 41b693d034..9c6dd41b7c 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -437,6 +437,8 @@ extern int __pthread_attr_setstack (pthread_attr_t *__attr, void *__stackaddr, size_t __stacksize); int __pthread_attr_setaffinity_np (pthread_attr_t *, size_t, const cpu_set_t *); libc_hidden_proto (__pthread_attr_setaffinity_np) +extern __typeof (pthread_getattr_default_np) __pthread_getattr_default_np; +libpthread_hidden_proto (__pthread_getattr_default_np) extern int __pthread_rwlock_init (pthread_rwlock_t *__restrict __rwlock, const pthread_rwlockattr_t *__restrict __attr); |