summaryrefslogtreecommitdiffstats
path: root/src/H5Opkg.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-12-01 16:08:04 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-12-01 16:08:04 (GMT)
commit930a0b5d7c6933e0d216a016cfd29f2255e12433 (patch)
tree56e6cf9488a388ab5569ba3b8506ca7795894062 /src/H5Opkg.h
parent20171a92a59045d1f0ba8481961070689f1c59f2 (diff)
parent2e80fbbfcc5a15c296c16e4a4295ce77a9af6587 (diff)
downloadhdf5-930a0b5d7c6933e0d216a016cfd29f2255e12433.zip
hdf5-930a0b5d7c6933e0d216a016cfd29f2255e12433.tar.gz
hdf5-930a0b5d7c6933e0d216a016cfd29f2255e12433.tar.bz2
Merge pull request #809 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:vol_normalize to develop
* commit '2e80fbbfcc5a15c296c16e4a4295ce77a9af6587': Fixed an incorrect FUNC_ENTER macro. Normalization with VOL integration branch.
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r--src/H5Opkg.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h
index b0c67d1..109d273 100644
--- a/src/H5Opkg.h
+++ b/src/H5Opkg.h
@@ -247,20 +247,20 @@ struct H5O_msg_class_t {
};
struct H5O_mesg_t {
- const H5O_msg_class_t *type; /*type of message */
- hbool_t dirty; /*raw out of date wrt native */
- uint8_t flags; /*message flags */
- H5O_msg_crt_idx_t crt_idx; /*message creation index */
- unsigned chunkno; /*chunk number for this mesg */
- void *native; /*native format message */
- uint8_t *raw; /*ptr to raw data */
- size_t raw_size; /*size with alignment */
+ const H5O_msg_class_t *type; /* type of message */
+ hbool_t dirty; /* raw out of date wrt native */
+ uint8_t flags; /* message flags */
+ H5O_msg_crt_idx_t crt_idx; /* message creation index */
+ unsigned chunkno; /* chunk number for this mesg */
+ void *native; /* native format message */
+ uint8_t *raw; /* pointer to raw data */
+ size_t raw_size; /* size with alignment */
};
/* Struct for storing information about "best" message to move to new chunk */
typedef struct H5O_msg_alloc_info_t {
int msgno; /* Index in message array */
- unsigned id; /* Message type ID on disk */
+ unsigned id; /* Message type ID on disk */
unsigned chunkno; /* Index in chunk array */
size_t gap_size; /* Size of any "gap" in the chunk immediately after message */
size_t null_size; /* Size of any null message in the chunk immediately after message */