vdso.lds.S 489 Bytes
Newer Older
1
/*
Roland McGrath's avatar
Roland McGrath committed
2 3 4 5
 * Linker script for 64-bit vDSO.
 * We #include the file to define the layout details.
 *
 * This file defines the version script giving the user-exported symbols in
6
 * the DSO.
7 8
 */

9 10
#define BUILD_VDSO64

Roland McGrath's avatar
Roland McGrath committed
11
#include "vdso-layout.lds.S"
12

13
/*
Roland McGrath's avatar
Roland McGrath committed
14
 * This controls what userland symbols we export from the vDSO.
15
 */
Roland McGrath's avatar
Roland McGrath committed
16 17 18 19 20 21 22 23 24
VERSION {
	LINUX_2.6 {
	global:
		clock_gettime;
		__vdso_clock_gettime;
		gettimeofday;
		__vdso_gettimeofday;
		getcpu;
		__vdso_getcpu;
Andy Lutomirski's avatar
Andy Lutomirski committed
25 26
		time;
		__vdso_time;
Roland McGrath's avatar
Roland McGrath committed
27 28
	local: *;
	};
29
}