diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-10 18:44:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-10 18:44:22 (GMT) |
commit | b55e5cb9441a658f9e7bc06e4656a6045d0666e8 (patch) | |
tree | aaa79a416d45d70e355c7e30c5d0e7580ac129b7 /src/H5R.c | |
parent | 24d8506dd564c5cc0fdebb5ebdfaec7bda5a7435 (diff) | |
download | hdf5-b55e5cb9441a658f9e7bc06e4656a6045d0666e8.zip hdf5-b55e5cb9441a658f9e7bc06e4656a6045d0666e8.tar.gz hdf5-b55e5cb9441a658f9e7bc06e4656a6045d0666e8.tar.bz2 |
[svn-r6388] Purpose:
Update feature
Description:
Relax collective constraint for API functions which only read metadata
from a file.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
FreeBSD 4.7 w/parallel
Diffstat (limited to 'src/H5R.c')
-rw-r--r-- | src/H5R.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -611,7 +611,7 @@ H5Rget_region(hid_t id, H5R_type_t ref_type, void *_ref) file=loc->file; /* Get the dataspace with the correct region selected */ - if ((space=H5R_get_region(file,H5AC_dxpl_id,ref_type,_ref))==NULL) + if ((space=H5R_get_region(file,H5AC_ind_dxpl_id,ref_type,_ref))==NULL) HGOTO_ERROR (H5E_REFERENCE, H5E_CANTCREATE, FAIL, "unable to create dataspace"); /* Atomize */ @@ -869,7 +869,7 @@ H5Rget_obj_type(hid_t id, H5R_type_t ref_type, void *_ref) file=loc->file; /* Get the object information */ - if ((ret_value=H5R_get_obj_type(file,H5AC_dxpl_id,ref_type,_ref))<0) + if ((ret_value=H5R_get_obj_type(file,H5AC_ind_dxpl_id,ref_type,_ref))<0) HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, H5G_UNKNOWN, "unable to determine object type"); done: |