1 /* Copyright (C) 2002-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
22 #include <dl-sysdep.h>
26 #include <bits/libc-lock.h>
31 unsigned long int *__fork_generation_pointer
;
34 #ifdef TLS_MULTIPLE_THREADS_IN_TCB
37 extern int __libc_multiple_threads attribute_hidden
;
41 __libc_pthread_init (ptr
, reclaim
, functions
)
42 unsigned long int *ptr
;
43 void (*reclaim
) (void);
44 const struct pthread_functions
*functions
;
46 /* Remember the pointer to the generation counter in libpthread. */
47 __fork_generation_pointer
= ptr
;
49 /* Called by a child after fork. */
50 __register_atfork (NULL
, NULL
, reclaim
, NULL
);
53 /* Copy the function pointers into an array in libc. This enables
54 access with just one memory reference but moreso, it prevents
55 hijacking the function pointers with just one pointer change. We
56 "encrypt" the function pointers since we cannot write-protect the
57 array easily enough. */
60 struct pthread_functions pf
;
61 # define NPTRS (sizeof (struct pthread_functions) / sizeof (void *))
63 } __attribute__ ((may_alias
)) const *src
;
66 src
= (const void *) functions
;
67 dest
= (void *) &__libc_pthread_functions
;
69 for (size_t cnt
= 0; cnt
< NPTRS
; ++cnt
)
71 void *p
= src
->parr
[cnt
];
75 __libc_pthread_functions_init
= 1;
78 #ifndef TLS_MULTIPLE_THREADS_IN_TCB
79 return &__libc_multiple_threads
;
84 libc_freeres_fn (freeres_libptread
)
86 if (__libc_pthread_functions_init
)
87 PTHFCT_CALL (ptr_freeres
, ());