]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/dl-vdso.h
Replace FSF snail mail address with URLs.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / dl-vdso.h
CommitLineData
8c2e201b 1/* ELF symbol resolve functions for VDSO objects.
fb86328a 2 Copyright (C) 2005, 2007 Free Software Foundation, Inc.
8c2e201b
UD
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
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
8c2e201b
UD
18
19#ifndef _DL_VDSO_H
20#define _DL_VDSO_H 1
21
fb86328a 22#include <assert.h>
fb86328a
UD
23#include <ldsodefs.h>
24
22502ea2
UD
25#ifdef NDEBUG
26# define CHECK_HASH(var) do {} while (0)
27#else
28# include <dl-hash.h>
29# define CHECK_HASH(var) assert (var.hash == _dl_elf_hash (var.name))
30#endif
fb86328a
UD
31
32/* Create version number record for lookup. */
33#define PREPARE_VERSION(var, vname, vhash) \
34 struct r_found_version var; \
35 var.name = vname; \
36 var.hidden = 1; \
37 var.hash = vhash; \
22502ea2 38 CHECK_HASH (var); \
fb86328a
UD
39 /* We don't have a specific file where the symbol can be found. */ \
40 var.filename = NULL
41
42
8c2e201b 43/* Functions for resolving symbols in the VDSO link map. */
fb86328a
UD
44extern void *_dl_vdso_vsym (const char *name,
45 const struct r_found_version *version)
8c2e201b
UD
46 internal_function attribute_hidden;
47
48#endif /* dl-vdso.h */