summaryrefslogtreecommitdiffstats
path: root/src/H5Fpkg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Fpkg.h')
-rw-r--r--src/H5Fpkg.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h
index 9208815..575cc0b 100644
--- a/src/H5Fpkg.h
+++ b/src/H5Fpkg.h
@@ -160,7 +160,7 @@ typedef struct H5F_efc_t H5F_efc_t;
/* Structure for passing 'user data' to superblock cache callbacks */
typedef struct H5F_superblock_cache_ud_t {
/* IN: */
- H5F_t * f; /* Pointer to file */
+ H5F_t *f; /* Pointer to file */
hbool_t ignore_drvrinfo; /* Indicate if the driver info should be ignored */
/* OUT: */
unsigned sym_leaf_k; /* Symbol table leaf node's 'K' value */
@@ -174,7 +174,7 @@ typedef struct H5F_superblock_cache_ud_t {
/* Structure for passing 'user data' to driver info block cache callbacks */
typedef struct H5F_drvrinfo_cache_ud_t {
- H5F_t * f; /* Pointer to file */
+ H5F_t *f; /* Pointer to file */
haddr_t driver_addr; /* address of driver info block */
} H5F_drvrinfo_cache_ud_t;
@@ -241,8 +241,8 @@ typedef struct H5F_super_t {
* pointing to this struct.
*/
struct H5F_shared_t {
- H5FD_t * lf; /* Lower level file handle for I/O */
- H5F_super_t * sblock; /* Pointer to (pinned) superblock for file */
+ H5FD_t *lf; /* Lower level file handle for I/O */
+ H5F_super_t *sblock; /* Pointer to (pinned) superblock for file */
H5O_drvinfo_t *drvinfo; /* Pointer to the (pinned) driver info
* cache entry. This field is only defined
* for older versions of the super block,
@@ -272,8 +272,8 @@ struct H5F_shared_t {
unsigned long feature_flags; /* VFL Driver feature Flags */
haddr_t maxaddr; /* Maximum address for file */
- H5PB_t * page_buf; /* The page buffer cache */
- H5AC_t * cache; /* The object cache */
+ H5PB_t *page_buf; /* The page buffer cache */
+ H5AC_t *cache; /* The object cache */
H5AC_cache_config_t mdc_initCacheCfg; /* initial configuration for the */
/* metadata cache. This structure is */
/* fixed at creation time and should */
@@ -286,7 +286,7 @@ struct H5F_shared_t {
hbool_t use_mdc_logging; /* Set when metadata logging is desired */
hbool_t start_mdc_log_on_access; /* set when mdc logging should */
/* begin on file access/create */
- char * mdc_log_location; /* location of mdc log */
+ char *mdc_log_location; /* location of mdc log */
hid_t fcpl_id; /* File creation property list ID */
H5F_close_degree_t fc_degree; /* File close behavior degree */
hbool_t evict_on_close; /* If the file's objects should be evicted from the metadata cache on close */
@@ -302,16 +302,16 @@ struct H5F_shared_t {
hbool_t store_msg_crt_idx; /* Store creation index for object header messages? */
unsigned ncwfs; /* Num entries on cwfs list */
struct H5HG_heap_t **cwfs; /* Global heap cache */
- struct H5G_t * root_grp; /* Open root group */
- H5FO_t * open_objs; /* Open objects in file */
- H5UC_t * grp_btree_shared; /* Ref-counted group B-tree node info */
+ struct H5G_t *root_grp; /* Open root group */
+ H5FO_t *open_objs; /* Open objects in file */
+ H5UC_t *grp_btree_shared; /* Ref-counted group B-tree node info */
hbool_t use_file_locking; /* Whether or not to use file locking */
hbool_t closing; /* File is in the process of being closed */
/* Cached VOL connector ID & info */
hid_t vol_id; /* ID of VOL connector for the container */
const H5VL_class_t *vol_cls; /* Pointer to VOL connector class for the container */
- void * vol_info; /* Copy of VOL connector info for container */
+ void *vol_info; /* Copy of VOL connector info for container */
/* File space allocation information */
H5F_fspace_strategy_t fs_strategy; /* File space handling strategy */
@@ -327,7 +327,7 @@ struct H5F_shared_t {
H5F_fs_state_t fs_state[H5F_MEM_PAGE_NTYPES]; /* State of free space manager for each type */
haddr_t fs_addr[H5F_MEM_PAGE_NTYPES]; /* Address of free space manager info for each type */
- H5FS_t * fs_man[H5F_MEM_PAGE_NTYPES]; /* Free space manager for each file space type */
+ H5FS_t *fs_man[H5F_MEM_PAGE_NTYPES]; /* Free space manager for each file space type */
hbool_t null_fsm_addr; /* Used by h5clear tool to tell the library */
/* to drop free-space to the floor */
haddr_t eoa_fsm_fsalloc; /* eoa after file space allocation */
@@ -372,15 +372,15 @@ struct H5F_shared_t {
* to shared H5F_shared_t structs.
*/
struct H5F_t {
- char * open_name; /* Name used to open file */
- char * actual_name; /* Actual name of the file, after resolving symlinks, etc. */
- H5F_shared_t * shared; /* The shared file info */
+ char *open_name; /* Name used to open file */
+ char *actual_name; /* Actual name of the file, after resolving symlinks, etc. */
+ H5F_shared_t *shared; /* The shared file info */
H5VL_object_t *vol_obj; /* VOL object */
unsigned nopen_objs; /* Number of open object headers */
- H5FO_t * obj_count; /* # of time each object is opened through top file structure */
+ H5FO_t *obj_count; /* # of time each object is opened through top file structure */
hbool_t id_exists; /* Whether an ID for this struct exists */
hbool_t closing; /* File is in the process of being closed */
- struct H5F_t * parent; /* Parent file that this file is mounted to */
+ struct H5F_t *parent; /* Parent file that this file is mounted to */
unsigned nmounts; /* Number of children mounted to this file */
};
@@ -444,7 +444,7 @@ H5_DLL herr_t H5F__accum_flush(H5F_shared_t *f_sh);
H5_DLL herr_t H5F__accum_reset(H5F_shared_t *f_sh, hbool_t flush);
/* Shared file list related routines */
-H5_DLL herr_t H5F__sfile_add(H5F_shared_t *shared);
+H5_DLL herr_t H5F__sfile_add(H5F_shared_t *shared);
H5_DLL H5F_shared_t *H5F__sfile_search(H5FD_t *lf);
H5_DLL herr_t H5F__sfile_remove(H5F_shared_t *shared);
@@ -456,7 +456,7 @@ H5_DLL herr_t H5F__set_mpi_atomicity(H5F_t *file, hbool_t flag);
/* External file cache routines */
H5_DLL H5F_efc_t *H5F__efc_create(unsigned max_nfiles);
-H5_DLL H5F_t * H5F__efc_open(H5F_t *parent, const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id);
+H5_DLL H5F_t *H5F__efc_open(H5F_t *parent, const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id);
H5_DLL unsigned H5F__efc_max_nfiles(H5F_efc_t *efc);
H5_DLL herr_t H5F__efc_release(H5F_efc_t *efc);
H5_DLL herr_t H5F__efc_destroy(H5F_efc_t *efc);