summaryrefslogtreecommitdiffstats
path: root/src/H5PL.c
diff options
context:
space:
mode:
authorlrknox <lrknox>2017-04-19 04:13:43 (GMT)
committerlrknox <lrknox>2017-04-19 04:13:43 (GMT)
commit4d024142658d1c94a0a5f6b8b95778ecfd3291a9 (patch)
tree8dced854d90a328b4da4c597677a7741e03d84bd /src/H5PL.c
parentcc17070e1ebbb79b28a993310a02ededfc8169d9 (diff)
downloadhdf5-4d024142658d1c94a0a5f6b8b95778ecfd3291a9.zip
hdf5-4d024142658d1c94a0a5f6b8b95778ecfd3291a9.tar.gz
hdf5-4d024142658d1c94a0a5f6b8b95778ecfd3291a9.tar.bz2
Commit changes to files generated by running autogen.sh.
Diffstat (limited to 'src/H5PL.c')
-rw-r--r--src/H5PL.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index c8cf98f..bf69d3d 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -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)