Searched defs:z_dlp (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_lib.c46 void *z_dlp; member in struct:__anon3097
77 if (zlib.z_dlp != NULL)
78 return (zlib.z_dlp); /* library is already loaded */
83 if ((zlib.z_dlp = dlopen(_libctf_zlib, RTLD_LAZY | RTLD_LOCAL)) == NULL)
86 zlib.z_uncompress = (int (*)()) dlsym(zlib.z_dlp, "uncompress");
87 zlib.z_error = (const char *(*)()) dlsym(zlib.z_dlp, "zError");
90 (void) dlclose(zlib.z_dlp);
95 return (zlib.z_dlp);

Completed in 45 milliseconds