diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-06-09 20:09:25 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-06-09 20:09:25 (GMT) |
commit | 622f399a11f2ad9dcefb54d7244b8a0b64087907 (patch) | |
tree | c40b74e5d1ad5531f34f3de05cbb3c4882e9e74b /src | |
parent | 08506b20ed109b3be386a2aa00d6d3b5bc738a82 (diff) | |
download | hdf5-622f399a11f2ad9dcefb54d7244b8a0b64087907.zip hdf5-622f399a11f2ad9dcefb54d7244b8a0b64087907.tar.gz hdf5-622f399a11f2ad9dcefb54d7244b8a0b64087907.tar.bz2 |
[svn-r413] Added in a minor error code H5E_MPI to indicate failures due
to MPI functions. (Added by Kim Yates).
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Epublic.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h index 96ca600..9be3ed0 100644 --- a/src/H5Epublic.h +++ b/src/H5Epublic.h @@ -141,7 +141,10 @@ typedef enum H5E_minor_t { H5E_COMPLEN, /*name component is too long */ H5E_CWG, /*problem with current working group */ H5E_LINK, /*link count failure */ - H5E_SLINK /*symbolic link error */ + H5E_SLINK, /*symbolic link error */ + + /* Parallel errors */ + H5E_MPI /*some MPI function failed */ } H5E_minor_t; /* Information about an error */ |