1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-10 05:03:06 +03:00

htl: Drop ptr_pthread_once from pthread_functions

It is unused since ccdb68e829 ("htl: move pthread_once into libc")
This commit is contained in:
Samuel Thibault
2025-07-06 10:00:22 +00:00
parent ea85e7d550
commit b80f108b55
2 changed files with 0 additions and 3 deletions

View File

@@ -29,7 +29,6 @@
static const struct pthread_functions pthread_functions = { static const struct pthread_functions pthread_functions = {
.ptr___pthread_exit = __pthread_exit, .ptr___pthread_exit = __pthread_exit,
.ptr___pthread_get_cleanup_stack = __pthread_get_cleanup_stack, .ptr___pthread_get_cleanup_stack = __pthread_get_cleanup_stack,
.ptr_pthread_once = __pthread_once,
.ptr__IO_flockfile = _cthreads_flockfile, .ptr__IO_flockfile = _cthreads_flockfile,
.ptr__IO_funlockfile = _cthreads_funlockfile, .ptr__IO_funlockfile = _cthreads_funlockfile,
.ptr__IO_ftrylockfile = _cthreads_ftrylockfile, .ptr__IO_ftrylockfile = _cthreads_ftrylockfile,

View File

@@ -23,7 +23,6 @@
void __pthread_exit (void *) __attribute__ ((__noreturn__)); void __pthread_exit (void *) __attribute__ ((__noreturn__));
struct __pthread_cancelation_handler **__pthread_get_cleanup_stack (void); struct __pthread_cancelation_handler **__pthread_get_cleanup_stack (void);
int __pthread_once (pthread_once_t *, void (*) (void));
void _cthreads_flockfile (FILE *); void _cthreads_flockfile (FILE *);
void _cthreads_funlockfile (FILE *); void _cthreads_funlockfile (FILE *);
@@ -36,7 +35,6 @@ struct pthread_functions
{ {
void (*ptr___pthread_exit) (void *) __attribute__ ((__noreturn__)); void (*ptr___pthread_exit) (void *) __attribute__ ((__noreturn__));
struct __pthread_cancelation_handler **(*ptr___pthread_get_cleanup_stack) (void); struct __pthread_cancelation_handler **(*ptr___pthread_get_cleanup_stack) (void);
int (*ptr_pthread_once) (pthread_once_t *, void (*) (void));
void (*ptr__IO_flockfile) (FILE *); void (*ptr__IO_flockfile) (FILE *);
void (*ptr__IO_funlockfile) (FILE *); void (*ptr__IO_funlockfile) (FILE *);
int (*ptr__IO_ftrylockfile) (FILE *); int (*ptr__IO_ftrylockfile) (FILE *);