libc_pthread_init.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* Copyright (C) 2002,2003,2005,2006,2007,2009 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, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <unistd.h>
  16. #include <list.h>
  17. #include <fork.h>
  18. #include <dl-sysdep.h>
  19. #include <tls.h>
  20. #include <string.h>
  21. #include <pthreadP.h>
  22. #include <bits/libc-lock.h>
  23. #include <sysdep.h>
  24. #include <ldsodefs.h>
  25. #ifdef TLS_MULTIPLE_THREADS_IN_TCB
  26. void
  27. #else
  28. extern int __libc_multiple_threads attribute_hidden;
  29. int *
  30. #endif
  31. __libc_pthread_init (
  32. unsigned long int *ptr,
  33. void (*reclaim) (void),
  34. const struct pthread_functions *functions)
  35. {
  36. /* Remember the pointer to the generation counter in libpthread. */
  37. __fork_generation_pointer = ptr;
  38. /* Called by a child after fork. */
  39. __register_atfork (NULL, NULL, reclaim, NULL);
  40. #ifdef SHARED
  41. /* We copy the content of the variable pointed to by the FUNCTIONS
  42. parameter to one in libc.so since this means access to the array
  43. can be done with one memory access instead of two.
  44. */
  45. memcpy (&__libc_pthread_functions, functions,
  46. sizeof (__libc_pthread_functions));
  47. __libc_pthread_functions_init = 1;
  48. #endif
  49. #ifndef TLS_MULTIPLE_THREADS_IN_TCB
  50. return &__libc_multiple_threads;
  51. #endif
  52. }
  53. #ifdef SHARED
  54. #if 0
  55. void
  56. libc_freeres_fn (freeres_libptread)
  57. {
  58. if (__libc_pthread_functions_init)
  59. PTHFCT_CALL (ptr_freeres, ());
  60. }
  61. #endif
  62. #endif