summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5O.c4
-rw-r--r--src/H5Oprivate.h32
2 files changed, 18 insertions, 18 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 789a6ab..0f03237 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -93,7 +93,7 @@ const H5O_msg_class_t *const H5O_msg_class_g[] = {
#endif /* H5O_ENABLE_BOGUS */
H5O_MSG_GINFO, /*0x000A Group information */
H5O_MSG_PLINE, /*0x000B Data storage -- filter pipeline */
- H5O_MSG_ATTR, /*0x000C Attribute list */
+ H5O_MSG_ATTR, /*0x000C Attribute */
H5O_MSG_NAME, /*0x000D Object name */
H5O_MSG_MTIME, /*0x000E Object modification date and time */
H5O_MSG_SHMESG, /*0x000F File-wide shared message table */
@@ -102,7 +102,7 @@ const H5O_msg_class_t *const H5O_msg_class_g[] = {
H5O_MSG_MTIME_NEW, /*0x0012 New Object modification date and time */
H5O_MSG_BTREEK, /*0x0013 Non-default v1 B-tree 'K' values */
H5O_MSG_DRVINFO, /*0x0014 Driver info settings */
- H5O_MSG_AINFO, /*0x0015 Attribute information */
+ H5O_MSG_AINFO, /*0x0015 Attribute information */
};
/* Header object ID to class mapping */
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h
index b829145..eca29e2 100644
--- a/src/H5Oprivate.h
+++ b/src/H5Oprivate.h
@@ -178,13 +178,13 @@ typedef struct H5O_shared_t {
* values) as well as the end of the creation ordering - QAK)
*/
typedef struct H5O_linfo_t {
- /* (creation order info) */
+ /* Creation order info */
hbool_t track_corder; /* Are creation order values tracked on links? */
hbool_t index_corder; /* Are creation order values indexed on links? */
int64_t max_corder; /* Current max. creation order value for group */
haddr_t corder_bt2_addr; /* Address of v2 B-tree for indexing creation order values of links */
- /* (storage management info) */
+ /* Storage management info */
hsize_t nlinks; /* Number of links in the group */
haddr_t link_fheap_addr; /* Address of fractal heap for storing "dense" links */
haddr_t name_bt2_addr; /* Address of v2 B-tree for indexing names of links */
@@ -356,6 +356,18 @@ typedef struct H5O_name_t {
} H5O_name_t;
/*
+ * Shared message table message
+ * Information about file-wide shared message table, stored in superblock
+ * extension
+ * (Data structure in memory)
+ */
+typedef struct H5O_shmesg_table_t {
+ haddr_t addr; /*file address of SOHM table */
+ unsigned version; /*SOHM table version number */
+ unsigned nindexes; /*number of indexes in the table */
+} H5O_shmesg_table_t;
+
+/*
* Object header continuation message.
* (Data structure in memory)
*/
@@ -378,18 +390,6 @@ typedef struct H5O_stab_t {
} H5O_stab_t;
/*
- * Shared message table message
- * Information about file-wide shared message table, stored in superblock
- * extension
- * (Data structure in memory)
- */
-typedef struct H5O_shmesg_table_t {
- haddr_t addr; /*file address of SOHM table */
- unsigned version; /*SOHM table version number */
- unsigned nindexes; /*number of indexes in the table */
-} H5O_shmesg_table_t;
-
-/*
* v1 B-tree 'K' value message
* Information about file-wide non-default v1 B-tree 'K' values, stored in
* superblock extension
@@ -417,13 +417,13 @@ typedef struct H5O_drvinfo_t {
* (Data structure in memory)
*/
typedef struct H5O_ainfo_t {
- /* (creation order info) */
+ /* Creation order info */
hbool_t track_corder; /* Are creation order values tracked on attributes? */
hbool_t index_corder; /* Are creation order values indexed on attributes? */
H5O_msg_crt_idx_t max_crt_idx; /* Maximum attribute creation index used */
haddr_t corder_bt2_addr; /* Address of v2 B-tree for indexing creation order values of "dense" attributes */
- /* (storage management info) */
+ /* Storage management info */
hsize_t nattrs; /* Number of attributes on the object */
haddr_t fheap_addr; /* Address of fractal heap for storing "dense" attributes */
haddr_t name_bt2_addr; /* Address of v2 B-tree for indexing names of "dense" attributes */