cpuinfo
dlsymdlopenmaster
2 / 547 files match, 2 filtered matches.
src/arm/linux/hwcap.c
58 | goto cleanup;
59 | }
60 |
61 | getauxval = (getauxval_function_t) dlsym(libc, "getauxval");
62 | if (getauxval == NULL) {
63 | cpuinfo_log_info("failed to locate getauxval in libc.so: %s", dlerror());
tools/auxv-dump.c
16 | exit(EXIT_FAILURE);
17 | }
18 |
19 | getauxval_function_t getauxval = (getauxval_function_t) dlsym(libc, "getauxval");
20 | if (getauxval == NULL) {
21 | fprintf(stderr, "Error: failed to locate getauxval in libc.so: %s", dlerror());