Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Linker script for sparc32 vDSO
0003  * We #include the file to define the layout details.
0004  *
0005  * This file defines the version script giving the user-exported symbols in
0006  * the DSO.
0007  */
0008 
0009 #define BUILD_VDSO32
0010 #include "../vdso-layout.lds.S"
0011 
0012 /*
0013  * This controls what userland symbols we export from the vDSO.
0014  */
0015 VERSION {
0016     LINUX_2.6 {
0017     global:
0018         clock_gettime;
0019         __vdso_clock_gettime;
0020         __vdso_clock_gettime_stick;
0021         gettimeofday;
0022         __vdso_gettimeofday;
0023         __vdso_gettimeofday_stick;
0024     local: *;
0025     };
0026 }