Searched refs:libdd (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/regress/libexec/ld.so/dlsym/test3/prog1/
H A Dmain.c29 void *libdd; local
38 libdd = dlopen("libdd.so", RTLD_LAZY);
39 if (libdd == NULL) {
40 printf("dlopen(\"libdd.so\", RTLD_LAZY) FAILED\n");
46 ret = (*bbTest1)(libbb, libdd);
49 dlclose(libdd);
/openbsd-current/regress/libexec/ld.so/dlsym/test3/prog2/
H A Dmain.c29 void *libdd; local
38 libdd = dlopen("libdd.so", RTLD_LAZY);
39 if (libdd == NULL) {
40 printf("dlopen(\"libdd.so\", RTLD_LAZY) FAILED\n");
49 dlclose(libdd);
/openbsd-current/regress/libexec/ld.so/dlsym/test3/
H A DMakefile3 SUBDIR+= libee libdd libcc libbb libaa prog1 prog2 prog3 prog4
H A DMakefile.inc29 DD_DIR=${.CURDIR}/../libdd
/openbsd-current/regress/libexec/ld.so/dlsym/test3/libbb/
H A Dbb.c26 * this test is setup where the main program group dlopen's libbb and libdd
28 * libdd load group.
31 bbTest1(void *libbb, void *libdd) argument
35 /* check RTLD_DEFAULT can *not* see symbols in libdd object group */
41 /* check RTLD_SELF can *not* see symbols in libdd object group */
47 /* check RTLD_NEXT can *not* see symbols in libdd object group */
53 /* check NULL can *not* see symbols in libdd object group */
59 /* libbb should *not* see symbols in libdd or libee */
65 /* libdd should *not* see symbols in libbb or libcc */
66 if (dlsym(libdd, "bbSymbo
[all...]

Completed in 67 milliseconds