summaryrefslogtreecommitdiffstats
path: root/src/H5Apkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-06-13 20:12:55 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-06-13 20:12:55 (GMT)
commit6ed61e5dda6a877b955aab386379b189346bf74c (patch)
tree9413d3b78efcd467f21a84a5f710669ab18ca578 /src/H5Apkg.h
parent737f79b5da933853fde9a194d3fe5c4bd820261b (diff)
downloadhdf5-6ed61e5dda6a877b955aab386379b189346bf74c.zip
hdf5-6ed61e5dda6a877b955aab386379b189346bf74c.tar.gz
hdf5-6ed61e5dda6a877b955aab386379b189346bf74c.tar.bz2
[svn-r8676] Purpose:
Code optimization Description: Using existing dataspace extent copying routine instead of duplicating the code (more slowly). Also, back-port improvements to the dataspace message reading which clean up the clean and centralize operations. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.10 (sleipnir) w/parallel Too minor to require h5committest
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r--src/H5Apkg.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h
index c66cf9c..9c837ab 100644
--- a/src/H5Apkg.h
+++ b/src/H5Apkg.h
@@ -38,8 +38,8 @@
#include "H5Aprivate.h"
/* Other private headers needed by this file */
-#include "H5HGprivate.h" /* Global heaps */
#include "H5Sprivate.h" /* Dataspace */
+#include "H5Tprivate.h" /* Datatype functions */
struct H5A_t {
unsigned initialized;/* Indicate whether the attribute has been modified */
@@ -52,8 +52,6 @@ struct H5A_t {
size_t ds_size; /* Size of dataspace on disk */
void *data; /* Attribute data (on a temporary basis) */
size_t data_size; /* Size of data on disk */
- H5HG_t sh_heap; /*if defined, attribute is in global heap */
- H5F_t *sh_file; /*file pointer if this is a shared attribute */
};
/* Function prototypes for H5A package scope */