/* SPDX-License-Identifier: GPL-2.0 */1/*2* Linker script for 64-bit vDSO.3* We #include the file to define the layout details.4*5* This file defines the version script giving the user-exported symbols in6* the DSO.7*/89#define BUILD_VDSO641011#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;27clock_getres;28__vdso_clock_getres;29#ifdef CONFIG_X86_SGX30__vdso_sgx_enter_enclave;31#endif32getrandom;33__vdso_getrandom;34local: *;35};36}373839