summaryrefslogtreecommitdiffstats
path: root/src/H5Apkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-02-08 01:12:08 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-02-08 01:12:08 (GMT)
commite4d94d794375da9b6b8e407c8b3bd367b3d9ae06 (patch)
treef9a03307f68cd6a678d13a74568d6cc9e2f4416b /src/H5Apkg.h
parentd45c7c031f7cac8b918b2f049f8bd5f50a7cc976 (diff)
downloadhdf5-e4d94d794375da9b6b8e407c8b3bd367b3d9ae06.zip
hdf5-e4d94d794375da9b6b8e407c8b3bd367b3d9ae06.tar.gz
hdf5-e4d94d794375da9b6b8e407c8b3bd367b3d9ae06.tar.bz2
[svn-r13267] Description:
Add more support for creation order index operations to attributes: get deletions & compact<->dense storage transitions working. Tested on: FreeBSD/32 6.2 (duty) Mac OS X/32 10.4.8 (amazon)
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r--src/H5Apkg.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h
index 3fa7c75..708672a 100644
--- a/src/H5Apkg.h
+++ b/src/H5Apkg.h
@@ -124,6 +124,16 @@ typedef struct H5A_bt2_ud_ins_t {
H5O_fheap_id_t id; /* Heap ID of attribute to insert */
} H5A_bt2_ud_ins_t;
+/*
+ * Data exchange structure for dense attribute storage. This structure is
+ * passed through the v2 B-tree layer when removing attributes.
+ */
+typedef struct H5A_bt2_ud_rm_t {
+ /* downward */
+ H5A_bt2_ud_common_t common; /* Common info for B-tree user data (must be first) */
+ haddr_t corder_bt2_addr; /* v2 B-tree address of creation order index */
+} H5A_bt2_ud_rm_t;
+
/* Data structure to hold table of attributes for an object */
typedef struct {
size_t nattrs; /* # of attributes in table */