diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-17 11:10:52 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-05 08:36:01 -0300 |
commit | 6bb0d2fe0a15ae69f0c351bd2b83a737b8da771f (patch) | |
tree | dea5ae993ca17651b34a16226e1a01e93dc7b448 /nptl/pthreadP.h | |
parent | 4b9bedbc9032981f3c4ff9822d8d2015a8c026bc (diff) | |
download | glibc-6bb0d2fe0a15ae69f0c351bd2b83a737b8da771f.zip glibc-6bb0d2fe0a15ae69f0c351bd2b83a737b8da771f.tar.gz glibc-6bb0d2fe0a15ae69f0c351bd2b83a737b8da771f.tar.bz2 |
nptl: Fix __pthread_clockjoin_np64 __pthread_timedjoin_np64 hidden proto
They are both implemented in libpthread instead of libc.
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 93f3cef..c8538de 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -469,10 +469,10 @@ extern int __pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex); extern int __pthread_clockjoin_np64 (pthread_t threadid, void **thread_return, clockid_t clockid, const struct __timespec64 *abstime); -libc_hidden_proto (__pthread_clockjoin_np64) +libpthread_hidden_proto (__pthread_clockjoin_np64) extern int __pthread_timedjoin_np64 (pthread_t threadid, void **thread_return, const struct __timespec64 *abstime); -libc_hidden_proto (__pthread_timedjoin_np64) +libpthread_hidden_proto (__pthread_timedjoin_np64) extern int __pthread_cond_timedwait64 (pthread_cond_t *cond, pthread_mutex_t *mutex, const struct __timespec64 *abstime); |