summaryrefslogtreecommitdiffstats
path: root/src/H5Eprivate.h
diff options
context:
space:
mode:
authorThomas Kluyver <thomas@kluyver.me.uk>2020-10-15 09:49:22 (GMT)
committerThomas Kluyver <thomas@kluyver.me.uk>2020-10-15 09:49:22 (GMT)
commit73aba9228d2967647629b40ae957719588c757d5 (patch)
treeae57394c65f830f44d74642801e506b9488423b9 /src/H5Eprivate.h
parent220f8972cdd6ccd7b8715a0fb17c1867fd0b35c5 (diff)
downloadhdf5-73aba9228d2967647629b40ae957719588c757d5.zip
hdf5-73aba9228d2967647629b40ae957719588c757d5.tar.gz
hdf5-73aba9228d2967647629b40ae957719588c757d5.tar.bz2
Note that the description for system errors may be used by h5py
Diffstat (limited to 'src/H5Eprivate.h')
-rw-r--r--src/H5Eprivate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Eprivate.h b/src/H5Eprivate.h
index 8f89201..bf733ea 100644
--- a/src/H5Eprivate.h
+++ b/src/H5Eprivate.h
@@ -114,12 +114,14 @@ typedef struct H5E_t H5E_t;
#define HSYS_DONE_ERROR(majorcode, minorcode, retcode, str) \
{ \
int myerrno = errno; \
+ /* h5py may rely on the description format to get the errno - please try to avoid breaking it */ \
HDONE_ERROR(majorcode, minorcode, retcode, "%s, errno = %d, error message = '%s'", str, myerrno, \
HDstrerror(myerrno)); \
}
#define HSYS_GOTO_ERROR(majorcode, minorcode, retcode, str) \
{ \
int myerrno = errno; \
+ /* h5py may rely on the description format to get the errno - please try to avoid breaking it */ \
HGOTO_ERROR(majorcode, minorcode, retcode, "%s, errno = %d, error message = '%s'", str, myerrno, \
HDstrerror(myerrno)); \
}