Update copyright dates with scripts/update-copyrights.
[glibc.git] / nptl / libc_pthread_init.c
blob18844ad72bda5f457adc2f7f34066411990a3a3e
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/>. */
19 #include <unistd.h>
20 #include <list.h>
21 #include <fork.h>
22 #include <dl-sysdep.h>
23 #include <tls.h>
24 #include <string.h>
25 #include <pthreadP.h>
26 #include <bits/libc-lock.h>
27 #include <sysdep.h>
28 #include <ldsodefs.h>
31 unsigned long int *__fork_generation_pointer;
34 #ifdef TLS_MULTIPLE_THREADS_IN_TCB
35 void
36 #else
37 extern int __libc_multiple_threads attribute_hidden;
39 int *
40 #endif
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);
52 #ifdef SHARED
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. */
58 union ptrhack
60 struct pthread_functions pf;
61 # define NPTRS (sizeof (struct pthread_functions) / sizeof (void *))
62 void *parr[NPTRS];
63 } __attribute__ ((may_alias)) const *src;
64 union ptrhack *dest;
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];
72 PTR_MANGLE (p);
73 dest->parr[cnt] = p;
75 __libc_pthread_functions_init = 1;
76 #endif
78 #ifndef TLS_MULTIPLE_THREADS_IN_TCB
79 return &__libc_multiple_threads;
80 #endif
83 #ifdef SHARED
84 libc_freeres_fn (freeres_libptread)
86 if (__libc_pthread_functions_init)
87 PTHFCT_CALL (ptr_freeres, ());
89 #endif