Home
last modified time | relevance | path

Searched refs:dl (Results 1 – 1 of 1) sorted by relevance

/unit/src/
H A Dnxt_application.c338 void *dl; in nxt_discovery_module() local
355 dl = dlopen(name, RTLD_GLOBAL | RTLD_NOW); in nxt_discovery_module()
357 if (dl == NULL) { in nxt_discovery_module()
362 app = dlsym(dl, "nxt_app_module"); in nxt_discovery_module()
477 if (dlclose(dl) != 0) { in nxt_discovery_module()
867 void *dl; in nxt_app_module_load() local
870 dl = dlopen(name, RTLD_GLOBAL | RTLD_LAZY); in nxt_app_module_load()
872 if (nxt_slow_path(dl == NULL)) { in nxt_app_module_load()
879 app = dlsym(dl, "nxt_app_module"); in nxt_app_module_load()
886 if (dlclose(dl) != 0) { in nxt_app_module_load()