summaryrefslogtreecommitdiffstats
path: root/src/H5Opkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-11-28 18:51:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-11-28 18:51:23 (GMT)
commit1687720a5fe51d32e1544371eaa75af162f35a31 (patch)
treea876648b981f58cd0299ee4754ae4e6620a6b1f1 /src/H5Opkg.h
parent0bd83631d5ed24fe948a273e8a4d4bd8f128a86c (diff)
downloadhdf5-1687720a5fe51d32e1544371eaa75af162f35a31.zip
hdf5-1687720a5fe51d32e1544371eaa75af162f35a31.tar.gz
hdf5-1687720a5fe51d32e1544371eaa75af162f35a31.tar.bz2
[svn-r12991] Description:
Reduce the size of some of the group information to more reasonable bounds. (16-bit values instead of 32-bit values). Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r--src/H5Opkg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h
index 18a0804..657da10 100644
--- a/src/H5Opkg.h
+++ b/src/H5Opkg.h
@@ -188,22 +188,22 @@ struct H5O_t {
H5AC_info_t cache_info; /* Information for H5AC cache functions, _must_ be */
/* first field in structure */
- /* General information */
+ /* General information (stored) */
unsigned version; /*version number */
unsigned nlink; /*link count */
- /* Time information */
+ /* Time information (stored) */
time_t atime; /*access time */
time_t mtime; /*modification time */
time_t ctime; /*change time */
- /* Message management */
+ /* Message management (stored, indirectly) */
size_t nmesgs; /*number of messages */
size_t alloc_nmesgs; /*number of message slots */
H5O_mesg_t *mesg; /*array of messages */
size_t skipped_mesg_size; /*size of skipped messages (for sanity checking) */
- /* Chunk management */
+ /* Chunk management (not stored) */
size_t nchunks; /*number of chunks */
size_t alloc_nchunks; /*chunks allocated */
H5O_chunk_t *chunk; /*array of chunks */