pthread_setcanceltype.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Copyright (C) 2002, 2003 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 "pthreadP.h"
  18. #include <atomic.h>
  19. int
  20. attribute_protected
  21. __pthread_setcanceltype (
  22. int type,
  23. int *oldtype)
  24. {
  25. volatile struct pthread *self;
  26. if (type < PTHREAD_CANCEL_DEFERRED || type > PTHREAD_CANCEL_ASYNCHRONOUS)
  27. return EINVAL;
  28. self = THREAD_SELF;
  29. int oldval = THREAD_GETMEM (self, cancelhandling);
  30. while (1)
  31. {
  32. int newval = (type == PTHREAD_CANCEL_ASYNCHRONOUS
  33. ? oldval | CANCELTYPE_BITMASK
  34. : oldval & ~CANCELTYPE_BITMASK);
  35. /* Store the old value. */
  36. if (oldtype != NULL)
  37. *oldtype = ((oldval & CANCELTYPE_BITMASK)
  38. ? PTHREAD_CANCEL_ASYNCHRONOUS : PTHREAD_CANCEL_DEFERRED);
  39. /* Avoid doing unnecessary work. The atomic operation can
  40. potentially be expensive if the memory has to be locked and
  41. remote cache lines have to be invalidated. */
  42. if (oldval == newval)
  43. break;
  44. /* Update the cancel handling word. This has to be done
  45. atomically since other bits could be modified as well. */
  46. int curval = THREAD_ATOMIC_CMPXCHG_VAL (self, cancelhandling, newval,
  47. oldval);
  48. if (__builtin_expect (curval == oldval, 1))
  49. {
  50. if (CANCEL_ENABLED_AND_CANCELED_AND_ASYNCHRONOUS (newval))
  51. {
  52. THREAD_SETMEM (self, result, PTHREAD_CANCELED);
  53. __do_cancel ();
  54. }
  55. break;
  56. }
  57. /* Prepare for the next round. */
  58. oldval = curval;
  59. }
  60. return 0;
  61. }
  62. strong_alias (__pthread_setcanceltype, pthread_setcanceltype)