vdso.lds.S 489 B

123456789101112131415161718192021222324252627282930
  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. getcpu;
  21. __vdso_getcpu;
  22. time;
  23. __vdso_time;
  24. local: *;
  25. };
  26. }