pthread_cancel.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* Copyright (C) 2002, 2003, 2004 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, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <errno.h>
  17. #include <signal.h>
  18. #include "pthreadP.h"
  19. #include "atomic.h"
  20. #include <sysdep.h>
  21. #include <bits/kernel-features.h>
  22. int
  23. pthread_cancel (pthread_t th)
  24. {
  25. volatile struct pthread *pd = (volatile struct pthread *) th;
  26. /* Make sure the descriptor is valid. */
  27. if (INVALID_TD_P (pd))
  28. /* Not a valid thread handle. */
  29. return ESRCH;
  30. #ifdef SHARED
  31. pthread_cancel_init ();
  32. #endif
  33. int result = 0;
  34. int oldval;
  35. int newval;
  36. do
  37. {
  38. oldval = pd->cancelhandling;
  39. newval = oldval | CANCELING_BITMASK | CANCELED_BITMASK;
  40. /* Avoid doing unnecessary work. The atomic operation can
  41. potentially be expensive if the bug has to be locked and
  42. remote cache lines have to be invalidated. */
  43. if (oldval == newval)
  44. break;
  45. /* If the cancellation is handled asynchronously just send a
  46. signal. We avoid this if possible since it's more
  47. expensive. */
  48. if (CANCEL_ENABLED_AND_CANCELED_AND_ASYNCHRONOUS (newval))
  49. {
  50. /* Mark the cancellation as "in progress". */
  51. atomic_bit_set (&pd->cancelhandling, CANCELING_BIT);
  52. /* The cancellation handler will take care of marking the
  53. thread as canceled. */
  54. INTERNAL_SYSCALL_DECL (err);
  55. /* One comment: The PID field in the TCB can temporarily be
  56. changed (in fork). But this must not affect this code
  57. here. Since this function would have to be called while
  58. the thread is executing fork, it would have to happen in
  59. a signal handler. But this is no allowed, pthread_cancel
  60. is not guaranteed to be async-safe. */
  61. int val;
  62. #if __ASSUME_TGKILL
  63. val = INTERNAL_SYSCALL (tgkill, err, 3,
  64. THREAD_GETMEM (THREAD_SELF, pid), pd->tid,
  65. SIGCANCEL);
  66. #else
  67. # ifdef __NR_tgkill
  68. val = INTERNAL_SYSCALL (tgkill, err, 3,
  69. THREAD_GETMEM (THREAD_SELF, pid), pd->tid,
  70. SIGCANCEL);
  71. if (INTERNAL_SYSCALL_ERROR_P (val, err)
  72. && INTERNAL_SYSCALL_ERRNO (val, err) == ENOSYS)
  73. # endif
  74. val = INTERNAL_SYSCALL (tkill, err, 2, pd->tid, SIGCANCEL);
  75. #endif
  76. if (INTERNAL_SYSCALL_ERROR_P (val, err))
  77. result = INTERNAL_SYSCALL_ERRNO (val, err);
  78. break;
  79. }
  80. }
  81. /* Mark the thread as canceled. This has to be done
  82. atomically since other bits could be modified as well. */
  83. while (atomic_compare_and_exchange_bool_acq (&pd->cancelhandling, newval,
  84. oldval));
  85. return result;
  86. }
  87. PTHREAD_STATIC_FN_REQUIRE (pthread_create)