From 031699209a178baa360cef1e1a202b46cd1c3f09 Mon Sep 17 00:00:00 2001 From: Mohamad Chaarawi Date: Mon, 30 Jun 2014 15:38:48 -0500 Subject: [svn-r25384] minor updates --- examples/h5ff_client_attr.c | 6 +++++- src/H5VLiod_dset.c | 7 +++++-- 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 */ -- cgit v0.12