diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-12-17 23:25:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-12-17 23:25:10 (GMT) |
commit | c6831c7a75a5d0c1ca82a03c96fc0f023d1bc52e (patch) | |
tree | 836f489d80ef2ca0ce59874bbffeb14795f23305 /src/H5VLnative.c | |
parent | 8909646693c312be5d3f4a0d4fef4623833bcaf8 (diff) | |
download | hdf5-c6831c7a75a5d0c1ca82a03c96fc0f023d1bc52e.zip hdf5-c6831c7a75a5d0c1ca82a03c96fc0f023d1bc52e.tar.gz hdf5-c6831c7a75a5d0c1ca82a03c96fc0f023d1bc52e.tar.bz2 |
Remove H5VL_FILE_CACHE_VOL_CONN from file specific callbacks, as it turns out
not to be necessary.
Also, correct _MSC_VER #ifdef
Diffstat (limited to 'src/H5VLnative.c')
-rw-r--r-- | src/H5VLnative.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/H5VLnative.c b/src/H5VLnative.c index 0339205..4e6af18 100644 --- a/src/H5VLnative.c +++ b/src/H5VLnative.c @@ -1738,18 +1738,6 @@ H5VL__native_file_specific(void *obj, H5VL_file_specific_t specific_type, break; } - /* H5Fcreate / H5Fopen */ - case H5VL_FILE_CACHE_VOL_CONN: - { - hid_t vol_id = HDva_arg(arguments, hid_t); - void *vol_info = HDva_arg(arguments, void *); - - /* Call private routine */ - if(H5F__set_vol_conn((H5F_t *)obj, vol_id, vol_info) < 0) - HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "cache VOL connector ID & info failed") - break; - } - default: HGOTO_ERROR(H5E_VOL, H5E_UNSUPPORTED, FAIL, "invalid specific operation") } /* end switch */ |