pthread_kill.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <errno.h>
  16. #include <signal.h>
  17. #include <pthreadP.h>
  18. #include <tls.h>
  19. #include <sysdep.h>
  20. #include <bits/kernel-features.h>
  21. int
  22. __pthread_kill (
  23. pthread_t threadid,
  24. int signo)
  25. {
  26. struct pthread *pd = (struct pthread *) threadid;
  27. /* Make sure the descriptor is valid. */
  28. if (DEBUGGING_P && INVALID_TD_P (pd))
  29. /* Not a valid thread handle. */
  30. return ESRCH;
  31. /* Force load of pd->tid into local variable or register. Otherwise
  32. if a thread exits between ESRCH test and tgkill, we might return
  33. EINVAL, because pd->tid would be cleared by the kernel. */
  34. pid_t tid = atomic_forced_read (pd->tid);
  35. if (__builtin_expect (tid <= 0, 0))
  36. /* Not a valid thread handle. */
  37. return ESRCH;
  38. /* Disallow sending the signal we use for cancellation, timers, for
  39. for the setxid implementation. */
  40. if (signo == SIGCANCEL || signo == SIGTIMER || signo == SIGSETXID)
  41. return EINVAL;
  42. /* We have a special syscall to do the work. */
  43. INTERNAL_SYSCALL_DECL (err);
  44. /* One comment: The PID field in the TCB can temporarily be changed
  45. (in fork). But this must not affect this code here. Since this
  46. function would have to be called while the thread is executing
  47. fork, it would have to happen in a signal handler. But this is
  48. no allowed, pthread_kill is not guaranteed to be async-safe. */
  49. pid_t pid = getpid ();
  50. int val;
  51. val = INTERNAL_SYSCALL (tgkill, err, 3, pid, tid, signo);
  52. return (INTERNAL_SYSCALL_ERROR_P (val, err)
  53. ? INTERNAL_SYSCALL_ERRNO (val, err) : 0);
  54. }
  55. strong_alias (__pthread_kill, pthread_kill)