summaryrefslogtreecommitdiffstats
path: root/src/H5C2private.h
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2008-06-12 17:10:17 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2008-06-12 17:10:17 (GMT)
commit55af47c47c3c0c7bc17266968f5e0e782189e819 (patch)
tree965fd2c485eeeeab9a800d67393ba0b2e5c34603 /src/H5C2private.h
parentc0fd3c41276b3a595fceb03b9d0f0a63418940ed (diff)
downloadhdf5-55af47c47c3c0c7bc17266968f5e0e782189e819.zip
hdf5-55af47c47c3c0c7bc17266968f5e0e782189e819.tar.gz
hdf5-55af47c47c3c0c7bc17266968f5e0e782189e819.tar.bz2
[svn-r15207] Purpose: Adding a quick fix to put the end of address (EOA) value into
journal entries to be used by the recovery tool. This value is only really neded once per transaction, and only when the EOA changes, so rather than putting it into each journal entry, this should be moved into its own transaction type. However, in order to speed testing along, this quick fix has been implemented for the time being. Modified h5recover tool to use eoa value as well as journaling tests accordingly. Tested: kagiso
Diffstat (limited to 'src/H5C2private.h')
-rw-r--r--src/H5C2private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5C2private.h b/src/H5C2private.h
index 20111df..d397548 100644
--- a/src/H5C2private.h
+++ b/src/H5C2private.h
@@ -1544,6 +1544,7 @@ H5_DLL herr_t H5C2_jb__start_transaction(H5C2_jbrb_t * struct_ptr,
H5_DLL herr_t H5C2_jb__journal_entry(H5C2_jbrb_t * struct_ptr,
uint64_t trans_num,
+ haddr_t eoa,
haddr_t base_addr,
size_t length,
const uint8_t * body);