pthread_once.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003.
  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 "pthreadP.h"
  16. #include <lowlevellock.h>
  17. unsigned long int __fork_generation attribute_hidden;
  18. static void
  19. clear_once_control (void *arg)
  20. {
  21. pthread_once_t *once_control = (pthread_once_t *) arg;
  22. *once_control = 0;
  23. lll_futex_wake (once_control, INT_MAX, LLL_PRIVATE);
  24. }
  25. int
  26. attribute_protected
  27. __pthread_once (pthread_once_t *once_control, void (*init_routine) (void))
  28. {
  29. for (;;)
  30. {
  31. int oldval;
  32. int newval;
  33. int tmp;
  34. /* Pseudo code:
  35. newval = __fork_generation | 1;
  36. oldval = *once_control;
  37. if ((oldval & 2) == 0)
  38. *once_control = newval;
  39. Do this atomically.
  40. */
  41. newval = __fork_generation | 1;
  42. __asm__ __volatile__ ("1: lwarx %0,0,%3\n"
  43. " andi. %1,%0,2\n"
  44. " bne 2f\n"
  45. " stwcx. %4,0,%3\n"
  46. " bne 1b\n"
  47. "2: isync"
  48. : "=&r" (oldval), "=&r" (tmp), "=m" (*once_control)
  49. : "r" (once_control), "r" (newval), "m" (*once_control)
  50. : "cr0");
  51. /* Check if the initializer has already been done. */
  52. if ((oldval & 2) != 0)
  53. return 0;
  54. /* Check if another thread already runs the initializer. */
  55. if ((oldval & 1) == 0)
  56. break;
  57. /* Check whether the initializer execution was interrupted by a fork. */
  58. if (oldval != newval)
  59. break;
  60. /* Same generation, some other thread was faster. Wait. */
  61. lll_futex_wait (once_control, oldval, LLL_PRIVATE);
  62. }
  63. /* This thread is the first here. Do the initialization.
  64. Register a cleanup handler so that in case the thread gets
  65. interrupted the initialization can be restarted. */
  66. pthread_cleanup_push (clear_once_control, once_control);
  67. init_routine ();
  68. pthread_cleanup_pop (0);
  69. /* Add one to *once_control to take the bottom 2 bits from 01 to 10. */
  70. atomic_increment (once_control);
  71. /* Wake up all other threads. */
  72. lll_futex_wake (once_control, INT_MAX, LLL_PRIVATE);
  73. return 0;
  74. }
  75. weak_alias (__pthread_once, pthread_once)
  76. strong_alias (__pthread_once, __pthread_once_internal)