Merge tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / arch / x86 / vdso / vdso.lds.S
CommitLineData
2aae950b 1/*
f6b46ebf
RM
2 * Linker script for 64-bit vDSO.
3 * We #include the file to define the layout details.
f6b46ebf
RM
4 *
5 * This file defines the version script giving the user-exported symbols in
2b6f2e64 6 * the DSO.
2aae950b 7 */
2aae950b 8
bfad381c
AL
9#define BUILD_VDSO64
10
f6b46ebf 11#include "vdso-layout.lds.S"
2aae950b 12
5b930493 13/*
f6b46ebf 14 * This controls what userland symbols we export from the vDSO.
5b930493 15 */
f6b46ebf
RM
16VERSION {
17 LINUX_2.6 {
18 global:
19 clock_gettime;
20 __vdso_clock_gettime;
21 gettimeofday;
22 __vdso_gettimeofday;
23 getcpu;
24 __vdso_getcpu;
f144a6b4
AL
25 time;
26 __vdso_time;
f6b46ebf
RM
27 local: *;
28 };
2aae950b 29}