diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-06-13 03:04:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-13 03:04:49 (GMT) |
commit | bfeb1b0dd5b7b2e4a706ff9b9515bba15e673f31 (patch) | |
tree | 28f4028d7e492dd538f043fc8e060f9858920365 /src | |
parent | 2af7ea3c22a07cfe617de6c43576a0ff4278f5eb (diff) | |
download | hdf5-bfeb1b0dd5b7b2e4a706ff9b9515bba15e673f31.zip hdf5-bfeb1b0dd5b7b2e4a706ff9b9515bba15e673f31.tar.gz hdf5-bfeb1b0dd5b7b2e4a706ff9b9515bba15e673f31.tar.bz2 |
Fix doxygen and actions - merge from develop (#3109)
* Update the workflows to changes in develop
* Disable java for error only action
* Fix Fortran doxygen
* add fortran alias
* Merge changes from develop to fix actions
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FDpublic.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5FDpublic.h b/src/H5FDpublic.h index 891b348..5363e0f 100644 --- a/src/H5FDpublic.h +++ b/src/H5FDpublic.h @@ -314,6 +314,7 @@ typedef struct { /** * \param[in] dest Address of the destination buffer * \param[in] src Address of the source buffer + * \param[in] size Size in bytes of the file image buffer to allocate * \param[in] file_image_op A value from #H5FD_file_image_op_t indicating * the operation being performed on the file image * when this callback is invoked @@ -326,6 +327,7 @@ typedef struct { //! <!-- [image_memcpy_snip] --> /** * \param[in] ptr Pointer to the buffer being reallocated + * \param[in] size Size in bytes of the file image buffer to allocate * \param[in] file_image_op A value from #H5FD_file_image_op_t indicating * the operation being performed on the file image * when this callback is invoked @@ -336,6 +338,10 @@ typedef struct { void *(*image_realloc)(void *ptr, size_t size, H5FD_file_image_op_t file_image_op, void *udata); //! <!-- [image_realloc_snip] --> /** + * \param[in] ptr Pointer to the buffer being reallocated + * \param[in] file_image_op A value from #H5FD_file_image_op_t indicating + * the operation being performed on the file image + * when this callback is invoked * \param[in] udata Value passed in in the H5Pset_file_image_callbacks * parameter \p udata */ |