summaryrefslogtreecommitdiffstats
path: root/src/H5FAint.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
commitb2d661b508a7fc7a2592c13bc6bdc175551f075d (patch)
tree13baeb0d83a7c2a4c6299993c182b1227c2f6114 /src/H5FAint.c
parent29ab58b58dce556639ea3154e262895773a8a8df (diff)
downloadhdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.zip
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.gz
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.bz2
Clang-format of source files
Diffstat (limited to 'src/H5FAint.c')
-rw-r--r--src/H5FAint.c59
1 files changed, 22 insertions, 37 deletions
diff --git a/src/H5FAint.c b/src/H5FAint.c
index 3a1375a..7c357a9 100644
--- a/src/H5FAint.c
+++ b/src/H5FAint.c
@@ -26,58 +26,47 @@
/* Module Declaration */
/**********************/
-#include "H5FAmodule.h" /* This source code file is part of the H5FA module */
-
+#include "H5FAmodule.h" /* This source code file is part of the H5FA module */
/***********************/
/* Other Packages Used */
/***********************/
-
/***********/
/* Headers */
/***********/
-#include "H5private.h" /* Generic Functions */
-#include "H5Eprivate.h" /* Error Handling */
-#include "H5FApkg.h" /* Fixed Arrays */
-
+#include "H5private.h" /* Generic Functions */
+#include "H5Eprivate.h" /* Error Handling */
+#include "H5FApkg.h" /* Fixed Arrays */
/****************/
/* Local Macros */
/****************/
-
/******************/
/* Local Typedefs */
/******************/
-
/********************/
/* Package Typedefs */
/********************/
-
/********************/
/* Local Prototypes */
/********************/
-
/*********************/
/* Package Variables */
/*********************/
-
/*****************************/
/* Library Private Variables */
/*****************************/
-
/*******************/
/* Local Variables */
/*******************/
-
-
/*-------------------------------------------------------------------------
* Function: H5FA__create_flush_depend
*
@@ -90,23 +79,21 @@
*
*-------------------------------------------------------------------------
*/
-BEGIN_FUNC(PKG, ERR,
-herr_t, SUCCEED, FAIL,
-H5FA__create_flush_depend(H5AC_info_t *parent_entry, H5AC_info_t *child_entry))
+BEGIN_FUNC(PKG, ERR, herr_t, SUCCEED, FAIL,
+ H5FA__create_flush_depend(H5AC_info_t *parent_entry, H5AC_info_t *child_entry))
- /* Sanity check */
- HDassert(parent_entry);
- HDassert(child_entry);
+/* Sanity check */
+HDassert(parent_entry);
+HDassert(child_entry);
- /* Create a flush dependency between parent and child entry */
- if(H5AC_create_flush_dependency(parent_entry, child_entry) < 0)
- H5E_THROW(H5E_CANTDEPEND, "unable to create flush dependency")
+/* Create a flush dependency between parent and child entry */
+if (H5AC_create_flush_dependency(parent_entry, child_entry) < 0)
+ H5E_THROW(H5E_CANTDEPEND, "unable to create flush dependency")
CATCH
-END_FUNC(PKG) /* end H5FA__create_flush_depend() */
+END_FUNC(PKG) /* end H5FA__create_flush_depend() */
-
/*-------------------------------------------------------------------------
* Function: H5FA__destroy_flush_depend
*
@@ -119,19 +106,17 @@ END_FUNC(PKG) /* end H5FA__create_flush_depend() */
*
*-------------------------------------------------------------------------
*/
-BEGIN_FUNC(PKG, ERR,
-herr_t, SUCCEED, FAIL,
-H5FA__destroy_flush_depend(H5AC_info_t *parent_entry, H5AC_info_t *child_entry))
+BEGIN_FUNC(PKG, ERR, herr_t, SUCCEED, FAIL,
+ H5FA__destroy_flush_depend(H5AC_info_t *parent_entry, H5AC_info_t *child_entry))
- /* Sanity check */
- HDassert(parent_entry);
- HDassert(child_entry);
+/* Sanity check */
+HDassert(parent_entry);
+HDassert(child_entry);
- /* Destroy a flush dependency between parent and child entry */
- if(H5AC_destroy_flush_dependency(parent_entry, child_entry) < 0)
- H5E_THROW(H5E_CANTUNDEPEND, "unable to destroy flush dependency")
+/* Destroy a flush dependency between parent and child entry */
+if (H5AC_destroy_flush_dependency(parent_entry, child_entry) < 0)
+ H5E_THROW(H5E_CANTUNDEPEND, "unable to destroy flush dependency")
CATCH
-END_FUNC(PKG) /* end H5FA__destroy_flush_depend() */
-
+END_FUNC(PKG) /* end H5FA__destroy_flush_depend() */