summaryrefslogtreecommitdiffstats
path: root/src/H5Eprivate.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-05-07 18:14:28 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-05-07 18:14:28 (GMT)
commite9464c11b56a407f5d1b8ea8e2009049df21dc2b (patch)
treeffe219d946dcdac4bb038293da90bbad16e7fd3d /src/H5Eprivate.h
parentd33f696dca83326884935d6ad1ee399fa21721a8 (diff)
downloadhdf5-e9464c11b56a407f5d1b8ea8e2009049df21dc2b.zip
hdf5-e9464c11b56a407f5d1b8ea8e2009049df21dc2b.tar.gz
hdf5-e9464c11b56a407f5d1b8ea8e2009049df21dc2b.tar.bz2
Normalization of H5E with develop
Diffstat (limited to 'src/H5Eprivate.h')
-rw-r--r--src/H5Eprivate.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/H5Eprivate.h b/src/H5Eprivate.h
index c3c440f..4cd8b70 100644
--- a/src/H5Eprivate.h
+++ b/src/H5Eprivate.h
@@ -168,20 +168,15 @@ typedef struct H5E_t H5E_t;
extern char H5E_mpi_error_str[MPI_MAX_ERROR_STRING];
extern int H5E_mpi_error_str_len;
-#define HMPI_ERROR(mpierr) \
- { \
- MPI_Error_string(mpierr, H5E_mpi_error_str, &H5E_mpi_error_str_len); \
- HERROR(H5E_INTERNAL, H5E_MPIERRSTR, "%s", H5E_mpi_error_str); \
- }
#define HMPI_DONE_ERROR(retcode, str, mpierr) \
{ \
- HMPI_ERROR(mpierr); \
- HDONE_ERROR(H5E_INTERNAL, H5E_MPI, retcode, str); \
+ MPI_Error_string(mpierr, H5E_mpi_error_str, &H5E_mpi_error_str_len); \
+ HDONE_ERROR(H5E_INTERNAL, H5E_MPI, retcode, "%s: MPI error string is '%s'", str, H5E_mpi_error_str); \
}
#define HMPI_GOTO_ERROR(retcode, str, mpierr) \
{ \
- HMPI_ERROR(mpierr); \
- HGOTO_ERROR(H5E_INTERNAL, H5E_MPI, retcode, str); \
+ MPI_Error_string(mpierr, H5E_mpi_error_str, &H5E_mpi_error_str_len); \
+ HGOTO_ERROR(H5E_INTERNAL, H5E_MPI, retcode, "%s: MPI error string is '%s'", str, H5E_mpi_error_str); \
}
#endif /* H5_HAVE_PARALLEL */