Update to LGPL v2.1.
[jlayton/glibc.git] / sysdeps / unix / sysv / linux / ia64 / dl-static.c
1 /* Variable initialization.  IA-64 version.
2    Copyright (C) 2001 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
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.
9
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.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #include <ldsodefs.h>
21
22 extern int _dl_clktck;
23
24 #ifdef SHARED
25
26 void
27 _dl_var_init (void *array[])
28 {
29   /* It has to match "variables" below. */
30   enum
31     {
32       DL_PAGESIZE = 0,
33       DL_CLKTCK
34     };
35
36   _dl_pagesize = *((size_t *) array[DL_PAGESIZE]);
37   _dl_clktck = *((int *) array[DL_CLKTCK]);
38 }
39
40 #else
41 #include <bits/libc-lock.h>
42
43 __libc_lock_define_initialized_recursive (static, _dl_static_lock)
44
45 static void *variables[] =
46 {
47   &_dl_pagesize,
48   &_dl_clktck
49 };
50
51 void
52 _dl_static_init (struct link_map *map)
53 {
54   const ElfW(Sym) *ref;
55   lookup_t loadbase;
56   void (*f) (void *[]);
57
58   __libc_lock_lock (_dl_static_lock);
59
60   loadbase = _dl_lookup_symbol ("_dl_var_init", map, &ref,
61                                 map->l_local_scope, 0, 1);
62   if (ref != NULL)
63     {
64       f = (void (*) (void *[])) DL_SYMBOL_ADDRESS (loadbase, ref);
65       f (variables);
66     }
67
68   __libc_lock_unlock (_dl_static_lock);
69 }
70
71 #endif