Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 20, 2023
1 parent f9d1f38 commit 4f54ae6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/H5VLcache_ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ static herr_t H5VL_cache_ext_init(hid_t vipl_id) {
H5LS_stack->next = NULL;
if (!getenv("ABT_THREAD_STACKSIZE"))
setenv("ABT_THREAD_STACKSIZE", "100000", 1);
//setenv("HDF5_ASYNC_DISABLE_IMPLICIT_NON_DSET_RW", "1", 1);
// setenv("HDF5_ASYNC_DISABLE_IMPLICIT_NON_DSET_RW", "1", 1);
// async_close_task_list = (object_close_task_t *)
// malloc(sizeof(object_close_task_t)); async_close_task_list->next = NULL;
// async_close_task_current = async_close_task_list;
Expand Down Expand Up @@ -4464,9 +4464,8 @@ static herr_t H5VL_cache_ext_file_close(void *file, hid_t dxpl_id, void **req) {
#ifndef NDEBUG
LOG_DEBUG(-1, "delay close object: %d",
o->async_close_task_current->type);
#endif
#endif
o->async_close_task_current = o->async_close_task_current->next;

}
free_async_close_list(o->async_close_task_head);
}
Expand Down Expand Up @@ -6031,7 +6030,7 @@ static herr_t create_dataset_cache_on_local_storage(void *obj, void *dset_args,
}

H5LSregister_cache(dset->H5LS, dset->H5DRMM->cache, obj);
dset->H5LS->cache_list = dset->H5LS->cache_list->next;
dset->H5LS->cache_list = dset->H5LS->cache_list->next;
// create mmap window
hsize_t ss = round_page(dset->H5DRMM->dset.size);

Expand Down Expand Up @@ -6676,7 +6675,7 @@ static herr_t create_dataset_cache_on_global_storage(void *obj, void *dset_args,
LOG_DEBUG(-1, "Create dataset in parent group done");
#endif
H5LSregister_cache(dset->H5LS, dset->H5DWMM->cache, obj);
// dset->H5LS->cache_head = dset->H5LS->cache_list;
// dset->H5LS->cache_head = dset->H5LS->cache_list;
dset->H5LS->cache_list = dset->H5LS->cache_list->next;
// create mmap window
#ifndef NDEBUG
Expand Down

0 comments on commit 4f54ae6

Please sign in to comment.