diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-11 11:56:37 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-11 20:21:30 +0200 |
commit | d7c51fe4f0efd7f3ca505b5d5b3a02d5d72d9bbd (patch) | |
tree | 2b7345efa44b58f1bc05800fd4e76df39a6737d6 /nptl/pthreadP.h | |
parent | c4c53e0f56ed14ba2416bb0181e82a9d49eefde0 (diff) | |
download | glibc-d7c51fe4f0efd7f3ca505b5d5b3a02d5d72d9bbd.tar.gz glibc-d7c51fe4f0efd7f3ca505b5d5b3a02d5d72d9bbd.tar.xz glibc-d7c51fe4f0efd7f3ca505b5d5b3a02d5d72d9bbd.zip |
nptl: Move pthread_cancel into libc
The symbol was moved using scripts/move-symbol-to-libc.py. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 1692788528..5b844f331a 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -521,7 +521,6 @@ extern pthread_t __pthread_self (void); extern int __pthread_equal (pthread_t thread1, pthread_t thread2); extern int __pthread_detach (pthread_t th); libc_hidden_proto (__pthread_detach) -extern int __pthread_cancel (pthread_t th); extern int __pthread_kill (pthread_t threadid, int signo); extern void __pthread_exit (void *value) __attribute__ ((__noreturn__)); libc_hidden_proto (__pthread_exit) |