diff options
author | Guy-Fleury Iteriteka <gfleury@disroot.org> | 2023-07-16 10:44:05 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-24 01:56:57 +0200 |
commit | 9dfa2562162bf5f7ad1d85d34d827c388631fd86 (patch) | |
tree | 9eb401cd573f9e9d6798b1f9b6a5d11a03907a68 /sysdeps/htl | |
parent | 65a5112ede9ba3e37e165cf6c9c432f46b903936 (diff) | |
download | glibc-9dfa2562162bf5f7ad1d85d34d827c388631fd86.tar glibc-9dfa2562162bf5f7ad1d85d34d827c388631fd86.tar.gz glibc-9dfa2562162bf5f7ad1d85d34d827c388631fd86.tar.bz2 glibc-9dfa2562162bf5f7ad1d85d34d827c388631fd86.zip |
htl: move pthread_equal into libc
Signed-off-by: Guy-Fleury Iteriteka <gfleury@disroot.org>
Message-Id: <20230716084414.107245-2-gfleury@disroot.org>
Diffstat (limited to 'sysdeps/htl')
-rw-r--r-- | sysdeps/htl/pthread-functions.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/htl/pthread-functions.h b/sysdeps/htl/pthread-functions.h index 96728b838f..6aed953d29 100644 --- a/sysdeps/htl/pthread-functions.h +++ b/sysdeps/htl/pthread-functions.h @@ -45,7 +45,6 @@ int __pthread_cond_signal (pthread_cond_t *); int __pthread_cond_wait (pthread_cond_t *, pthread_mutex_t *); int __pthread_cond_timedwait (pthread_cond_t *, pthread_mutex_t *, const struct timespec *); -int __pthread_equal (pthread_t, pthread_t); void __pthread_exit (void *) __attribute__ ((__noreturn__)); int __pthread_getschedparam (pthread_t, int *, struct sched_param *); int __pthread_setschedparam (pthread_t, int, @@ -100,7 +99,6 @@ struct pthread_functions int (*ptr_pthread_cond_wait) (pthread_cond_t *, pthread_mutex_t *); int (*ptr_pthread_cond_timedwait) (pthread_cond_t *, pthread_mutex_t *, const struct timespec *); - int (*ptr_pthread_equal) (pthread_t, pthread_t); void (*ptr___pthread_exit) (void *) __attribute__ ((__noreturn__)); int (*ptr_pthread_getschedparam) (pthread_t, int *, struct sched_param *); int (*ptr_pthread_setschedparam) (pthread_t, int, |