Searched refs:exe_handle (Results 1 - 3 of 3) sorted by relevance

/openbsd-current/regress/libexec/ld.so/dlsym/test1/prog2/
H A Dmain.c31 void *exe_handle = dlopen(NULL, RTLD_LAZY); local
53 if (dlsym(exe_handle, "aaSymbol") == NULL) {
54 printf("dlsym(exe_handle, \"aaSymbol\") FAILED\n");
58 dlclose(exe_handle);
/openbsd-current/regress/libexec/ld.so/dlsym/test2/prog1/
H A Dmain.c32 void *exe_handle = dlopen(NULL, RTLD_LAZY); local
65 if (dlsym(exe_handle, "bbSymbol") != NULL) {
66 printf("dlsym(exe_handle, \"bbSymbol\") != NULL\n");
70 dlclose(exe_handle);
/openbsd-current/regress/libexec/ld.so/dlsym/test2/prog3/
H A Dmain.c33 void *exe_handle = dlopen(NULL, RTLD_LAZY); local
66 if (dlsym(exe_handle, "bbSymbol") == NULL) {
67 printf("dlsym(exe_handle, \"bbSymbol\") == NULL\n");
71 dlclose(exe_handle);

Completed in 93 milliseconds