diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-14 23:35:35 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-15 13:16:03 +0100 |
commit | 9446e02b0d2e94da4ebe9df6e2c5d23adc0f1d7d (patch) | |
tree | 2d6a3d3036c0ddf314a09163619a0639359e72ed /htl | |
parent | 7ed2b6921feb51d3fecdd0b72e8ab7a7f37ba4ae (diff) | |
download | glibc-9446e02b0d2e94da4ebe9df6e2c5d23adc0f1d7d.tar.gz glibc-9446e02b0d2e94da4ebe9df6e2c5d23adc0f1d7d.tar.xz glibc-9446e02b0d2e94da4ebe9df6e2c5d23adc0f1d7d.zip |
hurd: Remove some remnants of cthreads
Libc has actually been using mach's lock-internal.h mutex for a long time already.
Diffstat (limited to 'htl')
-rw-r--r-- | htl/libpthread_syms.a | 4 | ||||
-rw-r--r-- | htl/lockfile.c | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/htl/libpthread_syms.a b/htl/libpthread_syms.a index 48dadfbd5f..b299edd4de 100644 --- a/htl/libpthread_syms.a +++ b/htl/libpthread_syms.a @@ -15,7 +15,9 @@ EXTERN(__mutex_unlock_solid) EXTERN(_cthreads_flockfile) EXTERN(_cthreads_funlockfile) EXTERN(_cthreads_ftrylockfile) -/* To get the sigthread stack layout on fork */ +/* To create the sigthread and get its stack layout on fork */ +EXTERN(pthread_create) +EXTERN(pthread_detach) EXTERN(pthread_getattr_np) EXTERN(pthread_attr_getstack) EXTERN(__pthread_enable_asynccancel) diff --git a/htl/lockfile.c b/htl/lockfile.c index 51ed5ef8cc..12f077e645 100644 --- a/htl/lockfile.c +++ b/htl/lockfile.c @@ -16,7 +16,6 @@ License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ -#include <cthreads.h> #include <pthread.h> /* Must come before <stdio.h>! */ #include <stdio.h> |