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

hurd: Drop remnants of cthreads

These are not used in GNU/Hurd since very long now.
This commit is contained in:
Samuel Thibault
2025-11-11 22:32:39 +01:00
parent e06a1962e6
commit f851a74346
19 changed files with 17 additions and 289 deletions

View File

@@ -21,15 +21,16 @@
#include <pt-internal.h>
#include <set-hooks.h>
#include <libio/libio.h>
#include <pthread.h>
#include <pthread-functions.h>
#if IS_IN (libpthread)
static const struct pthread_functions pthread_functions = {
.ptr__IO_flockfile = _cthreads_flockfile,
.ptr__IO_funlockfile = _cthreads_funlockfile,
.ptr__IO_ftrylockfile = _cthreads_ftrylockfile,
.ptr__IO_flockfile = _IO_flockfile,
.ptr__IO_funlockfile = _IO_funlockfile,
.ptr__IO_ftrylockfile = _IO_ftrylockfile,
};
#endif /* IS_IN (libpthread) */