xref: /OK3568_Linux_fs/kernel/arch/sparc/vdso/vdso32/vdso32.lds.S (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun/*
2*4882a593Smuzhiyun * Linker script for sparc32 vDSO
3*4882a593Smuzhiyun * We #include the file to define the layout details.
4*4882a593Smuzhiyun *
5*4882a593Smuzhiyun * This file defines the version script giving the user-exported symbols in
6*4882a593Smuzhiyun * the DSO.
7*4882a593Smuzhiyun */
8*4882a593Smuzhiyun
9*4882a593Smuzhiyun#define	BUILD_VDSO32
10*4882a593Smuzhiyun#include "../vdso-layout.lds.S"
11*4882a593Smuzhiyun
12*4882a593Smuzhiyun/*
13*4882a593Smuzhiyun * This controls what userland symbols we export from the vDSO.
14*4882a593Smuzhiyun */
15*4882a593SmuzhiyunVERSION {
16*4882a593Smuzhiyun	LINUX_2.6 {
17*4882a593Smuzhiyun	global:
18*4882a593Smuzhiyun		clock_gettime;
19*4882a593Smuzhiyun		__vdso_clock_gettime;
20*4882a593Smuzhiyun		__vdso_clock_gettime_stick;
21*4882a593Smuzhiyun		gettimeofday;
22*4882a593Smuzhiyun		__vdso_gettimeofday;
23*4882a593Smuzhiyun		__vdso_gettimeofday_stick;
24*4882a593Smuzhiyun	local: *;
25*4882a593Smuzhiyun	};
26*4882a593Smuzhiyun}
27