summaryrefslogtreecommitdiffstats
path: root/src/H5SMpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-05-20 12:27:02 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-05-20 12:27:02 (GMT)
commit00aa7f1d8a39d900e90e1f68a58c7bce7eb3b113 (patch)
tree02ffa1aa09dd35b032c0b2ff220a57257533f5b7 /src/H5SMpkg.h
parentd41b5be368dbfc9298fdae92ec4aa752593915b8 (diff)
downloadhdf5-00aa7f1d8a39d900e90e1f68a58c7bce7eb3b113.zip
hdf5-00aa7f1d8a39d900e90e1f68a58c7bce7eb3b113.tar.gz
hdf5-00aa7f1d8a39d900e90e1f68a58c7bce7eb3b113.tar.bz2
[svn-r18864] Description:
General cleanups to align metadata journaling branch and trunk Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode Mac OS X/32 10.6.3 (amazon) in debug mode Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
Diffstat (limited to 'src/H5SMpkg.h')
-rwxr-xr-xsrc/H5SMpkg.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/H5SMpkg.h b/src/H5SMpkg.h
index 3aab317..6594912 100755
--- a/src/H5SMpkg.h
+++ b/src/H5SMpkg.h
@@ -219,9 +219,15 @@ typedef struct H5SM_bt2_ctx_t {
uint8_t sizeof_addr; /* Size of file addresses */
} H5SM_bt2_ctx_t;
-/* Callback info for loading a shared message index into the cache */
+/* Callback info for loading a shared message table index into the cache */
+typedef struct H5SM_table_cache_ud_t {
+ H5F_t *f; /* File that shared message index stored as a table is in */
+ size_t table_size; /* Size of SOHM master table in file */
+} H5SM_table_cache_ud_t;
+
+/* Callback info for loading a shared message list index into the cache */
typedef struct H5SM_list_cache_ud_t {
- H5F_t *f; /* File that shared message index stored as a list is in */
+ H5F_t *f; /* File that shared message index stored as a table is in */
H5SM_index_header_t *header; /* Index header for this list */
} H5SM_list_cache_ud_t;