diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2014-05-07 20:36:01 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2014-05-07 20:36:01 (GMT) |
commit | a2e99ef3166fee373caa8f7d8c366b7b6730c980 (patch) | |
tree | 000bb19a6780e508ade4c6d30cb2c2c0da695485 /src/H5VLiod_dset.c | |
parent | 4ac55511776e418294ebff773ddafdad17bb2e43 (diff) | |
download | hdf5-a2e99ef3166fee373caa8f7d8c366b7b6730c980.zip hdf5-a2e99ef3166fee373caa8f7d8c366b7b6730c980.tar.gz hdf5-a2e99ef3166fee373caa8f7d8c366b7b6730c980.tar.bz2 |
[svn-r25176] - use dxpls instead of access property lists in prefetch and evict calls.
- remove two routines: H5Pset_read_replica and H5Pset_evict_replica.
- add new routine: H5Pset_dxpl_replica
- update implementation and examples
Diffstat (limited to 'src/H5VLiod_dset.c')
-rw-r--r-- | src/H5VLiod_dset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLiod_dset.c b/src/H5VLiod_dset.c index f6084b3..0780bd1 100644 --- a/src/H5VLiod_dset.c +++ b/src/H5VLiod_dset.c @@ -664,7 +664,7 @@ H5VL_iod_server_dset_read_cb(AXE_engine_t axe_engine, iod_trans_id_t read_tid; /* get replica ID from dxpl */ - if(H5Pget_read_replica(dxpl_id, &read_tid) < 0) + if(H5Pget_dxpl_replica(dxpl_id, &read_tid) < 0) HGOTO_ERROR_FF(FAIL, "can't get replica ID from dxpl"); if(read_tid) { |