diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-12-13 16:00:11 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-12-13 16:00:11 (GMT) |
commit | 15b9ba46c02db1c8cd343c4e277cac8e61002911 (patch) | |
tree | fd5fe39ced811ca16a5a1bdbb2e75a97ec53eee1 | |
parent | 00925c7ecf41df68eb53fb3691bff955062221b2 (diff) | |
parent | ae59766fc981ff64236e461cebe3f193c7fd6a51 (diff) | |
download | hdf5-15b9ba46c02db1c8cd343c4e277cac8e61002911.zip hdf5-15b9ba46c02db1c8cd343c4e277cac8e61002911.tar.gz hdf5-15b9ba46c02db1c8cd343c4e277cac8e61002911.tar.bz2 |
Merge pull request #201 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit 'ae59766fc981ff64236e461cebe3f193c7fd6a51':
Change dlopen from RTLD_NOW to RTLD_LAZY
-rw-r--r-- | src/H5PL.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ typedef const void *(__cdecl *H5PL_get_plugin_info_t)(void); #define H5PL_HANDLE void * /* Get a handle to a plugin library. Windows: TEXT macro handles Unicode strings */ -#define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_NOW) +#define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_LAZY) /* Get the address of a symbol in dynamic library */ #define H5PL_GET_LIB_FUNC(H,N) dlsym(H,N) |