summaryrefslogtreecommitdiffstats
path: root/src/H5Opkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-12-04 17:32:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-12-04 17:32:43 (GMT)
commita21800d2f25ecd848285ddb00391219fe3b764d3 (patch)
treee1267b801d4da408d0bf70c758bf12808cbfdf3a /src/H5Opkg.h
parentc76724db391db20392c19feed3430da2a8059340 (diff)
downloadhdf5-a21800d2f25ecd848285ddb00391219fe3b764d3.zip
hdf5-a21800d2f25ecd848285ddb00391219fe3b764d3.tar.gz
hdf5-a21800d2f25ecd848285ddb00391219fe3b764d3.tar.bz2
[svn-r13020] Description:
Make number of attributes tracking in object header prefix "live" Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r--src/H5Opkg.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h
index a23b311..55c31f3 100644
--- a/src/H5Opkg.h
+++ b/src/H5Opkg.h
@@ -151,24 +151,6 @@
#define H5O_SIZEOF_CHKSUM_OH(O) \
H5O_SIZEOF_CHKSUM_VERS((O)->version)
-/* Load native information for a message, if it's not already present */
-/* (Only works for messages with decode callback) */
-#define H5O_LOAD_NATIVE(F, DXPL, MSG, ERR) \
- if(NULL == (MSG)->native) { \
- const H5O_msg_class_t *decode_type; \
- \
- /* Check for shared message */ \
- if((MSG)->flags & H5O_MSG_FLAG_SHARED) \
- decode_type = H5O_MSG_SHARED; \
- else \
- decode_type = (MSG)->type; \
- \
- /* Decode the message */ \
- HDassert(decode_type->decode); \
- if(NULL == ((MSG)->native = (decode_type->decode)((F), (DXPL), (MSG)->raw))) \
- HGOTO_ERROR(H5E_OHDR, H5E_CANTDECODE, ERR, "unable to decode message") \
- } /* end if */
-
struct H5O_msg_class_t {
unsigned id; /*message type ID on disk */
const char *name; /*for debugging */