diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-12-03 11:28:58 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-12 10:19:03 -0300 |
commit | cdba937662b16fc3685a8115f21e73f21330a44c (patch) | |
tree | b9a449f080b91c3861c02d324e0e2bc2005543ea /nptl/pthread_kill.c | |
parent | b2970919ba2d6c162bbe2b6d3b384968406e331b (diff) | |
download | glibc-cdba937662b16fc3685a8115f21e73f21330a44c.tar.gz glibc-cdba937662b16fc3685a8115f21e73f21330a44c.tar.xz glibc-cdba937662b16fc3685a8115f21e73f21330a44c.zip |
nptl: Move Linux pthread_kill to nptl
The nptl already expects a Linux syscall internally. Also __is_internal_signal is used and the DEBUGGING_P check is removed. Checked on x86_64-linux-gnu.
Diffstat (limited to 'nptl/pthread_kill.c')
-rw-r--r-- | nptl/pthread_kill.c | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/nptl/pthread_kill.c b/nptl/pthread_kill.c index f1fa2d303f..84b40478aa 100644 --- a/nptl/pthread_kill.c +++ b/nptl/pthread_kill.c @@ -16,23 +16,31 @@ License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ -#include <errno.h> -#include <signal.h> +#include <unistd.h> #include <pthreadP.h> - int __pthread_kill (pthread_t threadid, int signo) { + /* Disallow sending the signal we use for cancellation, timers, + for the setxid implementation. */ + if (__is_internal_signal (signo)) + return EINVAL; + + /* Force load of pd->tid into local variable or register. Otherwise + if a thread exits between ESRCH test and tgkill, we might return + EINVAL, because pd->tid would be cleared by the kernel. */ struct pthread *pd = (struct pthread *) threadid; - - /* Make sure the descriptor is valid. */ - if (DEBUGGING_P && INVALID_TD_P (pd)) + pid_t tid = atomic_forced_read (pd->tid); + if (__glibc_unlikely (tid <= 0)) /* Not a valid thread handle. */ return ESRCH; - return ENOSYS; + /* We have a special syscall to do the work. */ + pid_t pid = __getpid (); + + int val = INTERNAL_SYSCALL_CALL (tgkill, pid, tid, signo); + return (INTERNAL_SYSCALL_ERROR_P (val) + ? INTERNAL_SYSCALL_ERRNO (val) : 0); } strong_alias (__pthread_kill, pthread_kill) - -stub_warning (pthread_kill) |