pthread_cancel.c 3.3 KB

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