pthread_once.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* Copyright (C) 2003, 2004, 2007 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, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include "pthreadP.h"
  17. #include <lowlevellock.h>
  18. unsigned long int __fork_generation attribute_hidden;
  19. static void
  20. clear_once_control (void *arg)
  21. {
  22. pthread_once_t *once_control = (pthread_once_t *) arg;
  23. *once_control = 0;
  24. lll_futex_wake (once_control, INT_MAX, LLL_PRIVATE);
  25. }
  26. int
  27. attribute_hidden
  28. __pthread_once (once_control, init_routine)
  29. pthread_once_t *once_control;
  30. void (*init_routine) (void);
  31. {
  32. while (1)
  33. {
  34. int oldval, val, newval;
  35. val = *once_control;
  36. do
  37. {
  38. /* Check if the initialized has already been done. */
  39. if ((val & 2) != 0)
  40. return 0;
  41. oldval = val;
  42. newval = (oldval & 3) | __fork_generation | 1;
  43. val = atomic_compare_and_exchange_val_acq (once_control, newval,
  44. oldval);
  45. }
  46. while (__builtin_expect (val != oldval, 0));
  47. /* Check if another thread already runs the initializer. */
  48. if ((oldval & 1) != 0)
  49. {
  50. /* Check whether the initializer execution was interrupted
  51. by a fork. */
  52. if (((oldval ^ newval) & -4) == 0)
  53. {
  54. /* Same generation, some other thread was faster. Wait. */
  55. lll_futex_wait (once_control, newval, LLL_PRIVATE);
  56. continue;
  57. }
  58. }
  59. /* This thread is the first here. Do the initialization.
  60. Register a cleanup handler so that in case the thread gets
  61. interrupted the initialization can be restarted. */
  62. pthread_cleanup_push (clear_once_control, once_control);
  63. init_routine ();
  64. pthread_cleanup_pop (0);
  65. /* Add one to *once_control. */
  66. atomic_increment (once_control);
  67. /* Wake up all other threads. */
  68. lll_futex_wake (once_control, INT_MAX, LLL_PRIVATE);
  69. break;
  70. }
  71. return 0;
  72. }
  73. weak_alias (__pthread_once, pthread_once)
  74. strong_alias (__pthread_once, __pthread_once_internal)