/*1* Linker script for 64-bit vDSO.2* We #include the file to define the layout details.3* Here we only choose the prelinked virtual address.4*5* This file defines the version script giving the user-exported symbols in6* the DSO. We can define local symbols here called VDSO* to make their7* values visible using the asm-x86/vdso.h macros from the kernel proper.8*/910#define VDSO_PRELINK 0xffffffffff70000011#include "vdso-layout.lds.S"1213/*14* This controls what userland symbols we export from the vDSO.15*/16VERSION {17LINUX_2.6 {18global:19clock_gettime;20__vdso_clock_gettime;21gettimeofday;22__vdso_gettimeofday;23getcpu;24__vdso_getcpu;25time;26__vdso_time;27local: *;28};29}3031VDSO64_PRELINK = VDSO_PRELINK;323334