diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-02-09 22:23:52 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-02-10 01:03:50 +0000 |
commit | 59b7fe99f2593682ba779fe0faa8f1156d48d087 (patch) | |
tree | 6593a95d3d233a943b67a290cccf78fbbc793c0c /sysdeps/htl | |
parent | f1cd3407e4c6767e0bbe2ca122b713c6581b8d67 (diff) | |
download | glibc-59b7fe99f2593682ba779fe0faa8f1156d48d087.zip glibc-59b7fe99f2593682ba779fe0faa8f1156d48d087.tar.gz glibc-59b7fe99f2593682ba779fe0faa8f1156d48d087.tar.bz2 |
htl: Add support for libc cancellation points
Diffstat (limited to 'sysdeps/htl')
-rw-r--r-- | sysdeps/htl/pthreadP.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/htl/pthreadP.h b/sysdeps/htl/pthreadP.h index 7de9612..2bb4baa 100644 --- a/sysdeps/htl/pthreadP.h +++ b/sysdeps/htl/pthreadP.h @@ -84,6 +84,7 @@ int __pthread_attr_setstacksize (pthread_attr_t *__attr, size_t __stacksize); int __pthread_attr_setstack (pthread_attr_t *__attr, void *__stackaddr, size_t __stacksize); int __pthread_attr_getstack (const pthread_attr_t *, void **, size_t *); +void __pthread_testcancel (void); #if IS_IN (libpthread) hidden_proto (__pthread_key_create) |