extern"C"int* lookup_dlsym_symbol_using_RTLD_DEFAULT() {
dlerror(); int* result = static_cast<int*>(dlsym(RTLD_DEFAULT, "test_dlsym_symbol")); // TODO: remove this once b/20049306 is fixed if (result == nullptr) {
printf("Cannot find the answer\n");
} return result;
}
extern"C"int* lookup_dlsym_symbol2_using_RTLD_DEFAULT() {
dlerror(); int* result = static_cast<int*>(dlsym(RTLD_DEFAULT, "test_dlsym_symbol2")); // TODO: remove this once b/20049306 is fixed if (result == nullptr) {
printf("Cannot find the answer\n");
} return result;
}
extern"C"int* lookup_dlsym_symbol_using_RTLD_NEXT() {
dlerror(); int* result = static_cast<int*>(dlsym(RTLD_NEXT, "test_dlsym_symbol")); // TODO: remove this once b/20049306 is fixed if (result == nullptr) {
printf("Cannot find the answer\n");
} return result;
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.