diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-06-30 15:17:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 15:17:35 (GMT) |
commit | f0e0c7ed2a2df6d6dbe3728002c7fc9c518fea5f (patch) | |
tree | 5777763ab021d0a8d861c57fcf6f667dff980990 /doxygen/examples/ThreadSafeLibrary.html | |
parent | 858a2b28662ba18596e668bf9719285acd645df7 (diff) | |
download | hdf5-f0e0c7ed2a2df6d6dbe3728002c7fc9c518fea5f.zip hdf5-f0e0c7ed2a2df6d6dbe3728002c7fc9c518fea5f.tar.gz hdf5-f0e0c7ed2a2df6d6dbe3728002c7fc9c518fea5f.tar.bz2 |
Fixes parallel issues from recent C99 changes (#809)
* Fixes parallel issues from recent C99 changes
* Adds MPE FUNC --> __func__ changes missed in earlier PRs
* Even more missed FUNC --> __func__ macros
Diffstat (limited to 'doxygen/examples/ThreadSafeLibrary.html')
-rw-r--r-- | doxygen/examples/ThreadSafeLibrary.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doxygen/examples/ThreadSafeLibrary.html b/doxygen/examples/ThreadSafeLibrary.html index 8daf386..2ea42b4 100644 --- a/doxygen/examples/ThreadSafeLibrary.html +++ b/doxygen/examples/ThreadSafeLibrary.html @@ -709,7 +709,7 @@ created) or if the wrong values were read back. <blockquote> <pre> #define H5_API_UNSET_CANCEL \ - if (H5_IS_API(FUNC)) { \ + if (H5_IS_API(__func__)) { \ H5_cancel_count_inc(); \ } </pre> @@ -721,7 +721,7 @@ created) or if the wrong values were read back. <blockquote> <pre> #define H5_API_LOCK_BEGIN \ - if (H5_IS_API(FUNC)) { \ + if (H5_IS_API(__func__)) { \ H5_mutex_lock(&H5_g.init_lock); </pre> </blockquote> @@ -755,7 +755,7 @@ created) or if the wrong values were read back. <blockquote> <pre> #define H5_API_UNLOCK_BEGIN \ - if (H5_IS_API(FUNC)) { \ + if (H5_IS_API(__func__)) { \ H5_mutex_unlock(&H5_g.init_lock); </pre> </blockquote> @@ -774,7 +774,7 @@ created) or if the wrong values were read back. <blockquote> <pre> #define H5_API_SET_CANCEL \ - if (H5_IS_API(FUNC)) { \ + if (H5_IS_API(__func__)) { \ H5_cancel_count_dec(); \ } </pre> |