2 * vdso_test.c: Sample code to test parse_vdso.c
3 * Copyright (c) 2014 Andy Lutomirski
4 * Subject to the GNU General Public License, version 2
7 * gcc -std=gnu99 vdso_test.c parse_vdso.c
9 * Tested on x86, 32-bit and 64-bit. It may work on other architectures, too.
18 extern void *vdso_sym(const char *version
, const char *name
);
19 extern void vdso_init_from_sysinfo_ehdr(uintptr_t base
);
20 extern void vdso_init_from_auxv(void *auxv
);
22 int main(int argc
, char **argv
)
24 unsigned long sysinfo_ehdr
= getauxval(AT_SYSINFO_EHDR
);
26 printf("AT_SYSINFO_EHDR is not present!\n");
30 vdso_init_from_sysinfo_ehdr(getauxval(AT_SYSINFO_EHDR
));
32 /* Find gettimeofday. */
33 typedef long (*gtod_t
)(struct timeval
*tv
, struct timezone
*tz
);
34 gtod_t gtod
= (gtod_t
)vdso_sym("LINUX_2.6", "__vdso_gettimeofday");
37 printf("Could not find __vdso_gettimeofday\n");
42 long ret
= gtod(&tv
, 0);
45 printf("The time is %lld.%06lld\n",
46 (long long)tv
.tv_sec
, (long long)tv
.tv_usec
);
48 printf("__vdso_gettimeofday failed\n");