Home
last modified time | relevance | path

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

/petsc/src/sys/dll/
H A Ddlimpl.c45 …PETSC_UNUSED int dlflags1, dlflags2; /* There are some preprocessor paths where these variables ar… in PetscDLOpen() local
53 dlflags2 = 0; in PetscDLOpen()
94 dlflags2 = RTLD_GLOBAL; in PetscDLOpen()
97 if (mode & PETSC_DL_LOCAL) dlflags2 = RTLD_LOCAL; in PetscDLOpen()
102 dlhandle = dlopen(name, dlflags1 | dlflags2); in PetscDLOpen()
246 int dlflags1 = 0, dlflags2 = 0; in PetscDLSym() local
254 dlflags2 = RTLD_LOCAL; in PetscDLSym()
257 if (!dlflags2) dlflags2 = RTLD_GLOBAL; in PetscDLSym()
267 dlhandle = dlopen(NULL, dlflags1 | dlflags2); in PetscDLSym()