1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

nptl: Move pthread_cond_init implementation into libc

It is necessary to export __pthread_cond_init from libc because
the C11 condition variable needs it and is still left in libpthread.

This is part of the libpthread removal project:

  <https://sourceware.org/ml/libc-alpha/2019-10/msg00080.html>

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
Florian Weimer
2020-02-10 11:47:13 +01:00
parent dc6cfdc934
commit ad96df2cd9
35 changed files with 8 additions and 67 deletions

View File

@ -49,5 +49,6 @@ __pthread_cond_init (pthread_cond_t *cond, const pthread_condattr_t *cond_attr)
return 0;
}
versioned_symbol (libpthread, __pthread_cond_init,
libc_hidden_def (__pthread_cond_init)
versioned_symbol (libc, __pthread_cond_init,
pthread_cond_init, GLIBC_2_3_2);