HomeSort by relevance Sort by last modified time
    Searched refs:vdso_sym (Results 1 - 3 of 3) sorted by null

  /external/linux-kselftest/tools/testing/selftests/vDSO/
vdso_test.c 18 extern void *vdso_sym(const char *version, const char *name);
47 gtod_t gtod = (gtod_t)vdso_sym(version, name);
vdso_standalone_test_x86.c 19 extern void *vdso_sym(const char *version, const char *name);
91 gtod_t gtod = (gtod_t)vdso_sym("LINUX_2.6", "__vdso_gettimeofday");
parse_vdso.c 28 * Then call vdso_sym for each symbol you want. For example, to look up
31 * <some pointer> = vdso_sym("LINUX_2.6", "gettimeofday");
33 * <some pointer> = vdso_sym("LINUX_2.6", "__vdso_gettimeofday");
35 * vdso_sym will return 0 if the symbol doesn't exist or if the init function
36 * failed or was not called. vdso_sym is a little slow, so its return value
39 * vdso_sym is threadsafe; the init functions are not.
45 extern void *vdso_sym(const char *version, const char *name);
225 void *vdso_sym(const char *version, const char *name) function

Completed in 93 milliseconds