diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2017-04-21 21:05:44 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2017-04-21 21:05:44 (GMT) |
commit | c0a8eb362cc22cbfabe44456d83faeb47f946a65 (patch) | |
tree | f4e31f9295efab164785e0e112dcadf850300c01 /src/H5PL.c | |
parent | 7037520281fa5cde30a2377f94f7772e96f4f0f6 (diff) | |
parent | 15f85df5405eb2caf6ee4d3bc5f558344d4bb16a (diff) | |
download | hdf5-c0a8eb362cc22cbfabe44456d83faeb47f946a65.zip hdf5-c0a8eb362cc22cbfabe44456d83faeb47f946a65.tar.gz hdf5-c0a8eb362cc22cbfabe44456d83faeb47f946a65.tar.bz2 |
Merge pull request #450 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:hdf5_1_10 to hdf5_1_10
* commit '15f85df5405eb2caf6ee4d3bc5f558344d4bb16a':
bin/trace updates in H5PL.c
The cache_image test shows a skipped message about EoC in parallel.
Added code to disable the evict-on-close feature in the parallel library.
Diffstat (limited to 'src/H5PL.c')
-rw-r--r-- | src/H5PL.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -421,6 +421,7 @@ H5PLappend(const char *plugin_path) char *dl_path = NULL; FUNC_ENTER_API(FAIL) + H5TRACE1("e", "*s", plugin_path); if(H5PL_num_paths_g == H5PL_MAX_PATH_NUM) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "too many directories in path for table") if(NULL == plugin_path) @@ -455,6 +456,7 @@ H5PLprepend(const char *plugin_path) unsigned int plindex; FUNC_ENTER_API(FAIL) + H5TRACE1("e", "*s", plugin_path); if(H5PL_num_paths_g == H5PL_MAX_PATH_NUM) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "too many directories in path for table") if(NULL == plugin_path) @@ -490,6 +492,7 @@ H5PLreplace(const char *plugin_path, unsigned int index) char *dl_path = NULL; FUNC_ENTER_API(FAIL) + H5TRACE2("e", "*sIu", plugin_path, index); if(NULL == plugin_path) HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "no path provided") if(index >= H5PL_MAX_PATH_NUM) @@ -525,6 +528,7 @@ H5PLinsert(const char *plugin_path, unsigned int index) unsigned int plindex; FUNC_ENTER_API(FAIL) + H5TRACE2("e", "*sIu", plugin_path, index); if(H5PL_num_paths_g == H5PL_MAX_PATH_NUM) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "too many directories in path for table") if(NULL == plugin_path) |