summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-26 21:45:46 (GMT)
committerGitHub <noreply@github.com>2022-07-26 21:45:46 (GMT)
commitae414872f50187e64cbd6cc8f076c22cf5df2d53 (patch)
treeb616f33f5daa89f213e7c64e04c63afde906e939 /src/H5AC.c
parent213eac2588369f75a11df6bb1788dde33c4b82e2 (diff)
downloadhdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.zip
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.gz
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.bz2
Develop clang 13 format (#1933)
* Update format source to clang 13 * More format changes
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 31caf90..593193d 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -61,7 +61,7 @@
static herr_t H5AC__check_if_write_permitted(const H5F_t *f, hbool_t *write_permitted_ptr);
static herr_t H5AC__ext_config_2_int_config(const H5AC_cache_config_t *ext_conf_ptr,
- H5C_auto_size_ctl_t * int_conf_ptr);
+ H5C_auto_size_ctl_t *int_conf_ptr);
#if H5AC_DO_TAGGING_SANITY_CHECKS
static herr_t H5AC__verify_tag(const H5AC_class_t *type);
#endif /* H5AC_DO_TAGGING_SANITY_CHECKS */
@@ -202,7 +202,7 @@ H5AC_term_package(void)
hbool_t
H5AC_cache_image_pending(const H5F_t *f)
{
- H5C_t * cache_ptr;
+ H5C_t *cache_ptr;
hbool_t ret_value = FALSE; /* Return value */
FUNC_ENTER_NOAPI_NOINIT_NOERR
@@ -878,7 +878,7 @@ herr_t
H5AC_mark_entry_dirty(void *thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -932,7 +932,7 @@ herr_t
H5AC_mark_entry_clean(void *thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -985,7 +985,7 @@ herr_t
H5AC_mark_entry_unserialized(void *thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -1027,7 +1027,7 @@ herr_t
H5AC_mark_entry_serialized(void *thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -1125,7 +1125,7 @@ herr_t
H5AC_pin_protected_entry(void *thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -1306,7 +1306,7 @@ herr_t
H5AC_create_flush_dependency(void *parent_thing, void *child_thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -1428,7 +1428,7 @@ herr_t
H5AC_resize_entry(void *thing, size_t new_size)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -1543,7 +1543,7 @@ herr_t
H5AC_unpin_entry(void *thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -1585,7 +1585,7 @@ herr_t
H5AC_destroy_flush_dependency(void *parent_thing, void *child_thing)
{
H5AC_info_t *entry_ptr = NULL; /* Pointer to the cache entry */
- H5C_t * cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache_ptr = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -2746,7 +2746,7 @@ herr_t
H5AC_remove_entry(void *_entry)
{
H5AC_info_t *entry = (H5AC_info_t *)_entry; /* Entry to remove */
- H5C_t * cache = NULL; /* Pointer to the entry's associated metadata cache */
+ H5C_t *cache = NULL; /* Pointer to the entry's associated metadata cache */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)