[svn-r13494] Description:

Whitespace/formatting cleanup.

Tested on:
	None, just eyeballed.
This commit is contained in:
Quincey Koziol 2007-03-10 20:23:32 -05:00
parent 9129a8452a
commit 429cecd282
2 changed files with 18 additions and 18 deletions

View File

@ -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 */

View File

@ -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 */
@ -355,6 +355,18 @@ typedef struct H5O_name_t {
char *s; /*ptr to malloc'd memory */
} 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)
@ -377,18 +389,6 @@ typedef struct H5O_stab_t {
haddr_t heap_addr; /*address of name heap */
} 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
@ -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 */