diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-12 15:28:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-12 15:28:54 (GMT) |
commit | 8d91f0643b411da90476e2ac4fabca32b3045845 (patch) | |
tree | 56f07c385762ba8f9b43fc3ba6f9b4e691772ebb /src/H5SM.c | |
parent | c227f4ffa55010ea480773d9df9b68baba2b08e0 (diff) | |
download | hdf5-8d91f0643b411da90476e2ac4fabca32b3045845.zip hdf5-8d91f0643b411da90476e2ac4fabca32b3045845.tar.gz hdf5-8d91f0643b411da90476e2ac4fabca32b3045845.tar.bz2 |
[svn-r13500] Description:
Roll changes to SOHM v2 B-tree records into format, to get the format
for them stable while I'm working on debugging the actual support for the
"unique, but sharable" feature.
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5SM.c')
-rwxr-xr-x | src/H5SM.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1592,6 +1592,7 @@ H5SM_message_encode(const H5F_t UNUSED *f, uint8_t *raw, const void *_nrecord) FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5SM_message_encode) /* Encode the SOHM's fields */ + *raw++ = 0; /* The "location" of the message (will be replaced in following checkin) */ UINT32ENCODE(raw, message->hash); UINT32ENCODE(raw, message->ref_count); UINT64ENCODE(raw, message->fheap_id); @@ -1621,6 +1622,7 @@ H5SM_message_decode(const H5F_t UNUSED *f, const uint8_t *raw, void *_nrecord) FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5SM_message_decode) /* Encode the SOHM's fields */ + raw++; /* skip unused "location" field right now */ UINT32DECODE(raw, message->hash); UINT32DECODE(raw, message->ref_count); UINT64DECODE(raw, message->fheap_id); |