summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-02-03 13:57:04 (GMT)
committerGitHub <noreply@github.com>2021-02-03 13:57:04 (GMT)
commitab2c31bc87fb10e7dd6d6d5846743664694287ed (patch)
tree9587c3521e3ff43118c263ac20e678e7de0dea3e /src
parentddd799282f5a921c8d507838e48744ad2c377269 (diff)
downloadhdf5-ab2c31bc87fb10e7dd6d6d5846743664694287ed.zip
hdf5-ab2c31bc87fb10e7dd6d6d5846743664694287ed.tar.gz
hdf5-ab2c31bc87fb10e7dd6d6d5846743664694287ed.tar.bz2
Update supported platforms (#303)
* OESS-98 convert plugin option to FetchContent, add tests * Fixes for pkcfg files because of plugin option * OESS-98 fix tools test for plugins * Keep doxygen comments under 100 chars long - format hint * Whitespace * HDFFV-11144 - Reclassify CMake messages * HDFFV-11099/11100 added help text * Reworked switch statement to compare string instead * Fix typo * Update CDash mode * Correct name of threadsafe * Correct option name * Undo accidental commit * Note LLVM 10 to 11 format default changes * Update format plugin * Undo clang-format version 11 changes * One more correction * Update supported platforms * Revert whitespace changes * Correct whitespace
Diffstat (limited to 'src')
-rw-r--r--src/H5Dvirtual.c12
-rw-r--r--src/H5TS.c3
2 files changed, 7 insertions, 8 deletions
diff --git a/src/H5Dvirtual.c b/src/H5Dvirtual.c
index fb27b89..89fa5eb 100644
--- a/src/H5Dvirtual.c
+++ b/src/H5Dvirtual.c
@@ -395,8 +395,8 @@ done:
* Purpose: Store virtual dataset layout information, for new dataset
*
* Note: We assume here that the contents of the heap block cannot
- * change! If this ever stops being the case we must change
- * this code to allow overwrites of the heap block. -NAF
+ * change! If this ever stops being the case we must change
+ * this code to allow overwrites of the heap block. -NAF
*
* Return: Success: SUCCEED
* Failure: FAIL
@@ -2238,7 +2238,7 @@ H5D__virtual_init(H5F_t *f, const H5D_t *dset, hid_t dapl_id)
/* Retrieve VDS file FAPL to layout */
if (storage->source_fapl <= 0) {
- H5P_genplist_t *source_fapl = NULL; /* Source file FAPL */
+ H5P_genplist_t * source_fapl = NULL; /* Source file FAPL */
H5F_close_degree_t close_degree = H5F_CLOSE_WEAK; /* Close degree for source files */
if ((storage->source_fapl = H5F_get_access_plist(f, FALSE)) < 0)
@@ -2254,8 +2254,8 @@ H5D__virtual_init(H5F_t *f, const H5D_t *dset, hid_t dapl_id)
} /* end if */
#ifndef NDEBUG
else {
- H5P_genplist_t *source_fapl = NULL; /* Source file FAPL */
- H5F_close_degree_t close_degree; /* Close degree for source files */
+ H5P_genplist_t * source_fapl = NULL; /* Source file FAPL */
+ H5F_close_degree_t close_degree; /* Close degree for source files */
/* Get property list pointer */
if (NULL == (source_fapl = (H5P_genplist_t *)H5I_object(storage->source_fapl)))
@@ -2266,7 +2266,7 @@ H5D__virtual_init(H5F_t *f, const H5D_t *dset, hid_t dapl_id)
HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get file close degree")
HDassert(close_degree == H5F_CLOSE_WEAK);
- } /* end else */
+ } /* end else */
#endif /* NDEBUG */
/* Copy DAPL to layout */
diff --git a/src/H5TS.c b/src/H5TS.c
index 572ba65..6c4bb63 100644
--- a/src/H5TS.c
+++ b/src/H5TS.c
@@ -405,8 +405,7 @@ H5TS__mutex_acquire(H5TS_mutex_t *mutex, unsigned int lock_count, hbool_t *acqui
*--------------------------------------------------------------------------
*/
herr_t
-H5TSmutex_acquire(unsigned int lock_count, hbool_t *acquired)
-{
+H5TSmutex_acquire(unsigned int lock_count, hbool_t *acquired){
FUNC_ENTER_API_NAMECHECK_ONLY
/*NO TRACE*/