diff options
Diffstat (limited to 'doxygen/examples')
-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> |