Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Linker script for 64-bit 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_VDSO64
0010 
0011 #include "vdso-layout.lds.S"
0012 
0013 /*
0014  * This controls what userland symbols we export from the vDSO.
0015  */
0016 VERSION {
0017     LINUX_2.6 {
0018     global:
0019         clock_gettime;
0020         __vdso_clock_gettime;
0021         __vdso_clock_gettime_stick;
0022         gettimeofday;
0023         __vdso_gettimeofday;
0024         __vdso_gettimeofday_stick;
0025     local: *;
0026     };
0027 }