diff options
author | Robert Kim Yates <rkyates@llnl.gov> | 1998-09-02 23:52:33 (GMT) |
---|---|---|
committer | Robert Kim Yates <rkyates@llnl.gov> | 1998-09-02 23:52:33 (GMT) |
commit | 20419385684e8e0bbba6939f7049a9800a98089e (patch) | |
tree | e5fe0532d7b16d0eed38b7c0c189fd852618d970 /src/H5D.c | |
parent | 07f1057ec7382ad506b9d0484213d9c2e129d83b (diff) | |
download | hdf5-20419385684e8e0bbba6939f7049a9800a98089e.zip hdf5-20419385684e8e0bbba6939f7049a9800a98089e.tar.gz hdf5-20419385684e8e0bbba6939f7049a9800a98089e.tar.bz2 |
[svn-r656] Changed error report for failed optimized parallel xfers
in H5D_read and H5D_write.
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1394,8 +1394,8 @@ H5D_read(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, if (status>=0) goto succeed; #ifdef HAVE_PARALLEL /* Supports only no conversion, type or space, for now. */ - HGOTO_ERROR(H5E_DATASET, H5E_UNSUPPORTED, FAIL, - "collective read failed"); + HGOTO_ERROR(H5E_DATASET, H5E_READERROR, FAIL, + "optimized parallel read failed"); #endif #ifdef H5D_DEBUG if (H5DEBUG(D)) { @@ -1746,8 +1746,8 @@ H5D_write(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, if (status>=0) goto succeed; #ifdef HAVE_PARALLEL /* Supports only no conversion, type or space, for now. */ - HGOTO_ERROR(H5E_DATASET, H5E_UNSUPPORTED, FAIL, - "collective write failed"); + HGOTO_ERROR(H5E_DATASET, H5E_WRITEERROR, FAIL, + "optimized parallel write failed"); #endif #ifdef H5D_DEBUG if (H5DEBUG(D)) { |