vdso.lds.S 439 B

1234567891011121314151617181920212223242526
  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 in
  6. * the DSO.
  7. */
  8. #define BUILD_VDSO64
  9. #include "vdso-layout.lds.S"
  10. /*
  11. * This controls what userland symbols we export from the vDSO.
  12. */
  13. VERSION {
  14. LINUX_2.6 {
  15. global:
  16. clock_gettime;
  17. __vdso_clock_gettime;
  18. gettimeofday;
  19. __vdso_gettimeofday;
  20. local: *;
  21. };
  22. }