summaryrefslogtreecommitdiffstats
path: root/src/H5B2test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5B2test.c')
0 files changed, 0 insertions, 0 deletions
> -rw-r--r--src/H5Dio.c36
-rw-r--r--src/H5Fint.c17
-rw-r--r--src/H5Fpkg.h4
-rw-r--r--src/H5Fprivate.h12
-rw-r--r--src/H5Fquery.c25
-rw-r--r--src/H5Odtype.c30
-rw-r--r--src/H5Tconv.c74
-rw-r--r--src/H5Tpkg.h39
-rw-r--r--src/H5Tvlen.c757
-rw-r--r--src/H5VLcallback.c119
-rw-r--r--src/H5VLconnector.h22
-rw-r--r--src/H5VLconnector_passthru.h6
-rw-r--r--src/H5VLint.c29
-rw-r--r--src/H5VLnative.c10
-rw-r--r--src/H5VLnative.h3
-rw-r--r--src/H5VLnative_blob.c260
-rw-r--r--src/H5VLnative_private.h29
-rw-r--r--src/H5VLpassthru.c14
-rw-r--r--src/H5VLprivate.h8
-rw-r--r--src/Makefile.am5
22 files changed, 1033 insertions, 468 deletions
diff --git a/MANIFEST b/MANIFEST
index 723bae7..5e7caff 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -925,6 +925,7 @@
./src/H5VLnative.c
./src/H5VLnative.h
./src/H5VLnative_attr.c
+./src/H5VLnative_blob.c
./src/H5VLnative_dataset.c
./src/H5VLnative_datatype.c
./src/H5VLnative_file.c
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 6df8af3..b50fa71 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -649,6 +649,7 @@ set (H5VL_SOURCES
${HDF5_SRC_DIR}/H5VLint.c
${HDF5_SRC_DIR}/H5VLnative.c
${HDF5_SRC_DIR}/H5VLnative_attr.c
+ ${HDF5_SRC_DIR}/H5VLnative_blob.c
${HDF5_SRC_DIR}/H5VLnative_dataset.c
${HDF5_SRC_DIR}/H5VLnative_datatype.c
${HDF5_SRC_DIR}/H5VLnative_file.c
diff --git a/src/H5Dio.c b/src/H5Dio.c