pthread_once.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Jakub Jelinek <jakub@redhat.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. while (1)
  30. {
  31. int oldval, val, newval;
  32. val = *once_control;
  33. do
  34. {
  35. /* Check if the initialized has already been done. */
  36. if ((val & 2) != 0)
  37. return 0;
  38. oldval = val;
  39. newval = (oldval & 3) | __fork_generation | 1;
  40. val = atomic_compare_and_exchange_val_acq (once_control, newval,
  41. oldval);
  42. }
  43. while (__builtin_expect (val != oldval, 0));
  44. /* Check if another thread already runs the initializer. */
  45. if ((oldval & 1) != 0)
  46. {
  47. /* Check whether the initializer execution was interrupted
  48. by a fork. */
  49. if (((oldval ^ newval) & -4) == 0)
  50. {
  51. /* Same generation, some other thread was faster. Wait. */
  52. lll_futex_wait (once_control, newval, LLL_PRIVATE);
  53. continue;
  54. }
  55. }
  56. /* This thread is the first here. Do the initialization.
  57. Register a cleanup handler so that in case the thread gets
  58. interrupted the initialization can be restarted. */
  59. pthread_cleanup_push (clear_once_control, once_control);
  60. init_routine ();
  61. pthread_cleanup_pop (0);
  62. /* Add one to *once_control. */
  63. atomic_increment (once_control);
  64. /* Wake up all other threads. */
  65. lll_futex_wake (once_control, INT_MAX, LLL_PRIVATE);
  66. break;
  67. }
  68. return 0;
  69. }
  70. weak_alias (__pthread_once, pthread_once)
  71. strong_alias (__pthread_once, __pthread_once_internal)