vdsox32.lds.S 436 B

12345678910111213141516171819202122232425
  1. /*
  2. * Linker script for x32 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_VDSOX32
  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. __vdso_clock_gettime;
  17. __vdso_gettimeofday;
  18. __vdso_getcpu;
  19. __vdso_time;
  20. local: *;
  21. };
  22. }