mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
nptl: Fix __pthread_clockjoin_np64 __pthread_timedjoin_np64 hidden proto
They are both implemented in libpthread instead of libc.
This commit is contained in:
@ -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,
|
extern int __pthread_clockjoin_np64 (pthread_t threadid, void **thread_return,
|
||||||
clockid_t clockid,
|
clockid_t clockid,
|
||||||
const struct __timespec64 *abstime);
|
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,
|
extern int __pthread_timedjoin_np64 (pthread_t threadid, void **thread_return,
|
||||||
const struct __timespec64 *abstime);
|
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,
|
extern int __pthread_cond_timedwait64 (pthread_cond_t *cond,
|
||||||
pthread_mutex_t *mutex,
|
pthread_mutex_t *mutex,
|
||||||
const struct __timespec64 *abstime);
|
const struct __timespec64 *abstime);
|
||||||
|
@ -32,7 +32,7 @@ __pthread_clockjoin_np64 (pthread_t threadid, void **thread_return,
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if __TIMESIZE != 64
|
#if __TIMESIZE != 64
|
||||||
libc_hidden_def (__pthread_clockjoin_np64)
|
libpthread_hidden_def (__pthread_clockjoin_np64)
|
||||||
|
|
||||||
int
|
int
|
||||||
__pthread_clockjoin_np (pthread_t threadid, void **thread_return,
|
__pthread_clockjoin_np (pthread_t threadid, void **thread_return,
|
||||||
|
@ -28,7 +28,7 @@ __pthread_timedjoin_np64 (pthread_t threadid, void **thread_return,
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if __TIMESIZE != 64
|
#if __TIMESIZE != 64
|
||||||
libc_hidden_def (__pthread_timedjoin_np64)
|
libpthread_hidden_def (__pthread_timedjoin_np64)
|
||||||
|
|
||||||
int
|
int
|
||||||
__pthread_timedjoin_np (pthread_t threadid, void **thread_return,
|
__pthread_timedjoin_np (pthread_t threadid, void **thread_return,
|
||||||
|
Reference in New Issue
Block a user