diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
commit | 75376a3fb8429e3cf8275337ac56bf5f8127303b (patch) | |
tree | 298e27b1b8389937a3b0ce53dbc2e477de8d623b /nptl/nptl-init.c | |
parent | 93d78ec1cba68184931b75bef29afd3aed30f43a (diff) | |
download | glibc-75376a3fb8429e3cf8275337ac56bf5f8127303b.tar glibc-75376a3fb8429e3cf8275337ac56bf5f8127303b.tar.gz glibc-75376a3fb8429e3cf8275337ac56bf5f8127303b.tar.bz2 glibc-75376a3fb8429e3cf8275337ac56bf5f8127303b.zip |
nptl: Move pthread_setcanceltype into libc
No new symbol version is required because there was a forwarder.
The symbol has been moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/nptl-init.c')
-rw-r--r-- | nptl/nptl-init.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c index 1dd4c02bc0..41c566c9bd 100644 --- a/nptl/nptl-init.c +++ b/nptl/nptl-init.c @@ -84,7 +84,6 @@ static const struct pthread_functions pthread_functions = .ptr_pthread_mutex_init = __pthread_mutex_init, .ptr_pthread_mutex_lock = __pthread_mutex_lock, .ptr_pthread_mutex_unlock = __pthread_mutex_unlock, - .ptr_pthread_setcanceltype = __pthread_setcanceltype, .ptr___pthread_rwlock_rdlock = __pthread_rwlock_rdlock, .ptr___pthread_rwlock_wrlock = __pthread_rwlock_wrlock, .ptr___pthread_rwlock_unlock = __pthread_rwlock_unlock, |