diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-01-20 14:32:23 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-12 10:20:18 -0300 |
commit | 0280b390fbd4c55a708985829d58a639475bbffb (patch) | |
tree | 15f8a87c7cbf77099107b2a8d481cb66dd9a4bde /support/xthread.h | |
parent | 7384193b71a1720a381b7150ed44e07b13af45d5 (diff) | |
download | glibc-0280b390fbd4c55a708985829d58a639475bbffb.tar glibc-0280b390fbd4c55a708985829d58a639475bbffb.tar.gz glibc-0280b390fbd4c55a708985829d58a639475bbffb.tar.bz2 glibc-0280b390fbd4c55a708985829d58a639475bbffb.zip |
support: Add xpthread_kill
Checked on x86_64-linux-gnu.
Diffstat (limited to 'support/xthread.h')
-rw-r--r-- | support/xthread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/support/xthread.h b/support/xthread.h index c2086db347..1ba3f133ad 100644 --- a/support/xthread.h +++ b/support/xthread.h @@ -75,6 +75,8 @@ void xpthread_attr_setstacksize (pthread_attr_t *attr, void xpthread_attr_setguardsize (pthread_attr_t *attr, size_t guardsize); +void xpthread_kill (pthread_t thr, int signo); + /* Return the stack size used on support_set_small_thread_stack_size. */ size_t support_small_thread_stack_size (void); /* Set the stack size in ATTR to a small value, but still large enough |