summaryrefslogtreecommitdiffstats
path: root/src/H5Tpkg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r--src/H5Tpkg.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index 6b52d86..7e7203a 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -195,9 +195,10 @@ typedef enum H5T_state_t {
H5T_STATE_OPEN /*named constant, open object header */
} H5T_state_t;
-struct H5T_t {
+ /* This struct is shared between all occurances of an open named type */
+typedef struct H5T_shared_t {
+ hsize_t fo_count; /* number of references to this file object */
H5T_state_t state; /*current state of the type */
- H5G_entry_t ent; /*the type is a named type */
H5F_t *sh_file;/*file pointer if this is a shared type */
H5T_class_t type; /*which class of type is this? */
size_t size; /*total size of an instance of this type */
@@ -211,6 +212,11 @@ struct H5T_t {
H5T_opaque_t opaque; /* an opaque datatype */
H5T_array_t array; /* an array datatype */
} u;
+} H5T_shared_t;
+
+struct H5T_t {
+ H5G_entry_t ent; /* entry information if the type is a named type */
+ H5T_shared_t *shared; /* all other information */
};
/* A compound datatype member */