summaryrefslogtreecommitdiffstats
path: root/src/H5Opkg.h
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2011-10-21 19:51:32 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2011-10-21 19:51:32 (GMT)
commitf22b7d2e1268549e343e141206ab143b88da25ed (patch)
treeeb22bac6752b7212cf2138cbb44caf70cc141d5b /src/H5Opkg.h
parentfb1937371d160d267c6d18c88f49b59b67b663d9 (diff)
downloadhdf5-f22b7d2e1268549e343e141206ab143b88da25ed.zip
hdf5-f22b7d2e1268549e343e141206ab143b88da25ed.tar.gz
hdf5-f22b7d2e1268549e343e141206ab143b88da25ed.tar.bz2
[svn-r21646] Port r21603 to 1.8 branch
Purpose: Add generic skip list implementation Description: Added new H5SL_TYPE_GENERIC skip list type, which uses void *'s as keys and a client-supplied callback for key comparison. This was added to support the upcoming "merge named datatype" feature for H5Ocopy, but may be used in other places as well. Also added testing. Also fixed a potential bug with the H5SL_TYPE_OBJ implementation, and added testing for that. Tested: jam, koala, heiwa (h5committest), durandal
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r--src/H5Opkg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h
index 7fefde6..34a413c 100644
--- a/src/H5Opkg.h
+++ b/src/H5Opkg.h
@@ -333,7 +333,7 @@ typedef struct H5O_addr_map_t {
haddr_t dst_addr; /* Address of object in destination file */
hbool_t is_locked; /* Indicate that the destination object is locked currently */
hsize_t inc_ref_count; /* Number of deferred increments to reference count */
- H5O_obj_class_t *obj_class; /* Object class */
+ const H5O_obj_class_t *obj_class; /* Object class */
void *udata; /* Object class copy file udata */
} H5O_addr_map_t;