mirror of git://sourceware.org/git/glibc.git
nptl: Add missing __pthread_cond_wait alias in static builds
Fixes commit cf3fff1c19
("nptl: Move
cnd_wait into libc").
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
This commit is contained in:
parent
f294306ba1
commit
eb0e4756cf
|
@ -622,6 +622,9 @@ ___pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex)
|
||||||
versioned_symbol (libc, ___pthread_cond_wait, pthread_cond_wait,
|
versioned_symbol (libc, ___pthread_cond_wait, pthread_cond_wait,
|
||||||
GLIBC_2_3_2);
|
GLIBC_2_3_2);
|
||||||
libc_hidden_ver (___pthread_cond_wait, __pthread_cond_wait)
|
libc_hidden_ver (___pthread_cond_wait, __pthread_cond_wait)
|
||||||
|
#ifndef SHARED
|
||||||
|
strong_alias (___pthread_cond_wait, __pthread_cond_wait)
|
||||||
|
#endif
|
||||||
|
|
||||||
/* See __pthread_cond_wait_common. */
|
/* See __pthread_cond_wait_common. */
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue