Path: blob/master/arch/x86/entry/vdso/vdso32/vdso32.lds.S
26516 views
/* SPDX-License-Identifier: GPL-2.0 */1/*2* Linker script for 32-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#include <asm/page.h>1011#define BUILD_VDSO321213#include "../vdso-layout.lds.S"1415/* The ELF entry point can be used to set the AT_SYSINFO value. */16ENTRY(__kernel_vsyscall);1718/*19* This controls what userland symbols we export from the vDSO.20*/21VERSION22{23LINUX_2.6 {24global:25__vdso_clock_gettime;26__vdso_gettimeofday;27__vdso_time;28__vdso_clock_getres;29__vdso_clock_gettime64;30__vdso_getcpu;31};3233LINUX_2.5 {34global:35__kernel_vsyscall;36__kernel_sigreturn;37__kernel_rt_sigreturn;38local: *;39};40}414243