mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Fix cpp style cast and variable name
am: 6a70875ba8
Change-Id: Ib0e80bfa95dbe390db5b7c66d7cf9eba204b30d1
This commit is contained in:
@@ -44,14 +44,14 @@ dispatchTable loadHAL() {
|
||||
const char* filename = "libRS_internal.so";
|
||||
// Try to load libRS_internal.so from the "rs" namespace directly.
|
||||
typedef struct android_namespace_t* (*GetExportedNamespaceFnPtr)(const char*);
|
||||
GetExportedNamespaceFnPtr getExportedNamespace =
|
||||
(GetExportedNamespaceFnPtr)dlsym(RTLD_DEFAULT, "android_get_exported_namespace");
|
||||
GetExportedNamespaceFnPtr getExportedNamespace = reinterpret_cast<GetExportedNamespaceFnPtr>(
|
||||
dlsym(RTLD_DEFAULT, "android_get_exported_namespace"));
|
||||
void* handle = nullptr;
|
||||
if (getExportedNamespace != nullptr) {
|
||||
android_namespace_t* rs_namespace = getExportedNamespace("rs");
|
||||
if (rs_namespace != nullptr) {
|
||||
android_namespace_t* rsNamespace = getExportedNamespace("rs");
|
||||
if (rsNamespace != nullptr) {
|
||||
const android_dlextinfo dlextinfo = {
|
||||
.flags = ANDROID_DLEXT_USE_NAMESPACE, .library_namespace = rs_namespace,
|
||||
.flags = ANDROID_DLEXT_USE_NAMESPACE, .library_namespace = rsNamespace,
|
||||
};
|
||||
handle = android_dlopen_ext(filename, RTLD_LAZY | RTLD_LOCAL, &dlextinfo);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user