summaryrefslogtreecommitdiffstats
path: root/src/H5VLdummy.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-22 14:40:08 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-03-22 14:40:08 (GMT)
commitd17a7fa26e972714082c5061f29f6b9335e189f4 (patch)
treeddc656ce236b5bff340f7d686e975ce7f24da55a /src/H5VLdummy.c
parent10dd81d6bf70d17a573f8202fbf375e6badd18b3 (diff)
downloadhdf5-d17a7fa26e972714082c5061f29f6b9335e189f4.zip
hdf5-d17a7fa26e972714082c5061f29f6b9335e189f4.tar.gz
hdf5-d17a7fa26e972714082c5061f29f6b9335e189f4.tar.bz2
[svn-r22119] Changes:
- add VOL implementation for H5O, H5D, and H5T functions - update the VOL interface with H5VLget routines - make upper level IDs of Type H5I_XXX_PUBLIC - bug fixes Comments: - some routines still don't go through VOL but have a workaround so they don't have to at the moment.
Diffstat (limited to 'src/H5VLdummy.c')
-rw-r--r--src/H5VLdummy.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/H5VLdummy.c b/src/H5VLdummy.c
index bddf87c..b4fcfae 100644
--- a/src/H5VLdummy.c
+++ b/src/H5VLdummy.c
@@ -81,7 +81,8 @@ static const H5VL_class_t H5VL_dummy_g = {
NULL /* write */
},
{ /* datatype_cls */
- NULL /* open */
+ NULL, /* commit */
+ NULL /* open */
},
{ /* link_cls */
NULL, /* create */
@@ -94,7 +95,9 @@ static const H5VL_class_t H5VL_dummy_g = {
NULL, /* open */
NULL, /* close */
NULL, /* move */
- NULL /* copy */
+ NULL, /* copy */
+ NULL, /* lookup */
+ NULL /* get */
}
};