From bb2ed7151b05b0a159a991bacc7c58d46f39d3c5 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Thu, 15 Oct 2020 15:29:56 +0100 Subject: More general message about using description for errno --- src/H5Eprivate.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/H5Eprivate.h b/src/H5Eprivate.h index bf733ea..f3d3b6f 100644 --- a/src/H5Eprivate.h +++ b/src/H5Eprivate.h @@ -114,14 +114,18 @@ 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 */ \ + /* Other projects may rely on the description format to get the errno and any changes should be \ + * considered as an API change \ + */ \ 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 */ \ + /* Other projects may rely on the description format to get the errno and any changes should be \ + * considered as an API change \ + */ \ HGOTO_ERROR(majorcode, minorcode, retcode, "%s, errno = %d, error message = '%s'", str, myerrno, \ HDstrerror(myerrno)); \ } -- cgit v0.12