summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-04-18 20:31:41 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-04-18 20:31:41 (GMT)
commit780d0653f8c9cf61a648ad672bd31832a62785b9 (patch)
tree68c123ba5e6c7d7e2c34fd88f6faf64ac7a3b073 /src
parent6f2813dca722be761f45ca06eb03d96acae3a219 (diff)
downloadhdf5-780d0653f8c9cf61a648ad672bd31832a62785b9.zip
hdf5-780d0653f8c9cf61a648ad672bd31832a62785b9.tar.gz
hdf5-780d0653f8c9cf61a648ad672bd31832a62785b9.tar.bz2
HDFFV-10170 fix reconfigure
Diffstat (limited to 'src')
-rw-r--r--src/H5D.c2
-rw-r--r--src/H5PL.c6
-rw-r--r--src/H5config.h.in6
3 files changed, 13 insertions, 1 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 7f2a96d..fe29f96 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -1022,7 +1022,7 @@ H5Dget_chunk_storage_size(hid_t dset_id, const hsize_t *offset, hsize_t *chunk_n
herr_t ret_value = SUCCEED;
FUNC_ENTER_API(FAIL)
- H5TRACE1("h", "i", dset_id);
+ H5TRACE3("e", "i*h*h", dset_id, offset, chunk_nbytes);
/* Check arguments */
if(NULL == (dset = (H5D_t *)H5I_object_verify(dset_id, H5I_DATASET)))
diff --git a/src/H5PL.c b/src/H5PL.c
index e52a939..e786742 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -414,6 +414,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)
@@ -448,6 +449,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)
@@ -483,6 +485,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)
@@ -518,6 +521,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)
@@ -555,6 +559,7 @@ H5PLremove(unsigned int index)
unsigned int plindex;
FUNC_ENTER_API(FAIL)
+ H5TRACE1("e", "Iu", index);
if(H5PL_num_paths_g == 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table")
if(index >= H5PL_MAX_PATH_NUM)
@@ -599,6 +604,7 @@ H5PLget(unsigned int index, char *pathname/*out*/, size_t size)
char *dl_path = NULL;
FUNC_ENTER_API(FAIL)
+ H5TRACE3("Zs", "Iuxz", index, pathname, size);
if(H5PL_num_paths_g == 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table")
if(index >= H5PL_MAX_PATH_NUM)
diff --git a/src/H5config.h.in b/src/H5config.h.in
index 27b962a..a1a02bb 100644
--- a/src/H5config.h.in
+++ b/src/H5config.h.in
@@ -236,6 +236,12 @@
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
+/* Define to 1 if you have the `strtoll' function. */
+#undef HAVE_STRTOLL
+
+/* Define to 1 if you have the `strtoull' function. */
+#undef HAVE_STRTOULL
+
/* Define if `struct text_info' is defined */
#undef HAVE_STRUCT_TEXT_INFO