summaryrefslogtreecommitdiffstats
path: root/src/H5G.c
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2007-03-08 16:57:36 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2007-03-08 16:57:36 (GMT)
commit2996c917afa9d8dc27ac0360d6e34cd637a513f6 (patch)
tree8c0676b2cf0db0b99cb229a411b25a540c8e38c9 /src/H5G.c
parent5a4bf8171df9473047d1eda534ed9a6a4d0749d9 (diff)
downloadhdf5-2996c917afa9d8dc27ac0360d6e34cd637a513f6.zip
hdf5-2996c917afa9d8dc27ac0360d6e34cd637a513f6.tar.gz
hdf5-2996c917afa9d8dc27ac0360d6e34cd637a513f6.tar.bz2
[svn-r13475] There's a configure issue linking szip's shared libraries when running on kagiso.
The static szip libraries are working as intended, but when shared szip libraries are present and intended for use they cannot be opened. A check has been implemented to test if shared szip libraries are functional on current platform. If they are not, and the user is trying to use them, szip is now disbaled and the user is informed. This issue occurs on kagiso, and the resolution was tested on kagiso.
Diffstat (limited to 'src/H5G.c')
-rw-r--r--src/H5G.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/H5G.c b/src/H5G.c
index 86b446e..64eb8c2 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -162,7 +162,7 @@ H5Gcreate(hid_t loc_id, const char *name, size_t size_hint)
hid_t ret_value;
FUNC_ENTER_API(H5Gcreate, FAIL)
- H5TRACE3("i", "isz", loc_id, name, size_hint);
+ H5TRACE3("i", "i*sz", loc_id, name, size_hint);
/* Check arguments */
if(H5G_loc(loc_id, &loc) < 0)
@@ -360,7 +360,7 @@ H5Gopen(hid_t loc_id, const char *name)
hid_t ret_value; /* Return value */
FUNC_ENTER_API(H5Gopen, FAIL)
- H5TRACE2("i", "is", loc_id, name);
+ H5TRACE2("i", "i*s", loc_id, name);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -438,7 +438,7 @@ H5Gopen_expand(hid_t loc_id, const char *name, hid_t gapl_id)
hid_t ret_value; /* Return value */
FUNC_ENTER_API(H5Gopen_expand, FAIL);
- H5TRACE3("i", "isi", loc_id, name, gapl_id);
+ H5TRACE3("i", "i*si", loc_id, name, gapl_id);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -606,6 +606,7 @@ H5Gget_info(hid_t loc_id, const char *name, H5G_info_t *grp_info, hid_t lapl_id)
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(H5Gget_info, FAIL)
+ H5TRACE4("e", "i*s*xi", loc_id, name, grp_info, lapl_id);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -668,6 +669,8 @@ H5Gget_info_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type,
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(H5Gget_info_by_idx, FAIL)
+ H5TRACE7("e", "i*sIiIoh*xi", loc_id, group_name, idx_type, order, n, grp_info,
+ lapl_id);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)