summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-30 20:38:48 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-30 20:38:48 (GMT)
commit031699209a178baa360cef1e1a202b46cd1c3f09 (patch)
treecb393ab55976f4b374ebca6d387461527cb50b5e
parent99b0e643257b8c9f2a400b6f6e6fc22101e9bed3 (diff)
downloadhdf5-031699209a178baa360cef1e1a202b46cd1c3f09.zip
hdf5-031699209a178baa360cef1e1a202b46cd1c3f09.tar.gz
hdf5-031699209a178baa360cef1e1a202b46cd1c3f09.tar.bz2
[svn-r25384] minor updates
-rw-r--r--examples/h5ff_client_attr.c6
-rw-r--r--src/H5VLiod_dset.c7
2 files changed, 10 insertions, 3 deletions
diff --git a/examples/h5ff_client_attr.c b/examples/h5ff_client_attr.c
index 200b7c0..35ce9a4 100644
--- a/examples/h5ff_client_attr.c
+++ b/examples/h5ff_client_attr.c
@@ -267,7 +267,11 @@ int main(int argc, char **argv) {
assert(ret == 0);
gid1 = H5Gopen_ff(file_id, "G1", H5P_DEFAULT, rid3, e_stack);
-
+ {
+ hbool_t exists3;
+ ret = H5Aexists_ff(gid1, "RENAMED_GROUP_ATTR", &exists3, rid3, H5_EVENT_STACK_NULL);
+ assert(exists3 == 1);
+ }
aid2 = H5Aopen_ff(gid1, "RENAMED_GROUP_ATTR", H5P_DEFAULT, rid3, e_stack);
assert(aid2);
ret = H5Aread_ff(aid2, dtid, rdata2, rid3, e_stack);
diff --git a/src/H5VLiod_dset.c b/src/H5VLiod_dset.c
index 1c47a03..545bc6e 100644
--- a/src/H5VLiod_dset.c
+++ b/src/H5VLiod_dset.c
@@ -720,7 +720,10 @@ H5VL_iod_server_dset_read_cb(AXE_engine_t axe_engine,
HGOTO_ERROR_FF(FAIL, "can't get replica ID from dxpl");
if(read_tid) {
+ /* Do Nothing */;
+#if H5_EFF_DEBUG
fprintf(stderr, "Reading from replica tag %"PRIx64"\n", read_tid);
+#endif
}
else {
read_tid = rtid;
@@ -1319,8 +1322,8 @@ H5VL_iod_server_dset_set_extent_cb(AXE_engine_t UNUSED axe_engine,
herr_t ret_value = SUCCEED;
#if H5_EFF_DEBUG
- fprintf(stderr, "Start dataset Set Extent first dim to %zu\n",
- (iod_size_t)input->dims.size[0]);
+ fprintf(stderr, "Start dataset Set Extent (OID %"PRIx64") first dim to %zu\n",
+ iod_id, (iod_size_t)input->dims.size[0]);
#endif
/* open the dataset if we don't have the handle yet */