diff options
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r-- | src/H5Fpublic.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index db86101..1d98330 100644 --- a/src/H5Fpublic.h +++ b/src/H5Fpublic.h @@ -97,11 +97,13 @@ typedef enum H5F_close_degree_t { H5F_CLOSE_STRONG = 3 } H5F_close_degree_t; +/* Current "global" information about file */ +/* (just size info currently) */ typedef struct H5F_info_t { - hsize_t super_ext_size; /* superblock extension size */ + hsize_t super_ext_size; /* Superblock extension size */ struct { - hsize_t hdr_size; - H5_ih_info_t msgs_info; + hsize_t hdr_size; /* Shared object header message header size */ + H5_ih_info_t msgs_info; /* Shared object header message index & heap size */ } sohm; } H5F_info_t; @@ -142,7 +144,6 @@ H5_DLL herr_t H5Freset_mdc_hit_rate_stats(hid_t file_id); H5_DLL ssize_t H5Fget_name(hid_t obj_id, char *name, size_t size); H5_DLL herr_t H5Fget_info(hid_t obj_id, H5F_info_t *bh_info); - #ifdef __cplusplus } #endif |