summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2017-05-11 22:28:20 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2017-05-11 22:28:20 (GMT)
commit8fc280b3fc9b4f16d4bb3eef300df5d5158e26b0 (patch)
tree6f9e59f31a42a63f164383109886af312f57e1c8 /src/H5.c
parent06a0c4a64638d11f4e52c8c84c9d395e6bf85b7c (diff)
downloadhdf5-8fc280b3fc9b4f16d4bb3eef300df5d5158e26b0.zip
hdf5-8fc280b3fc9b4f16d4bb3eef300df5d5158e26b0.tar.gz
hdf5-8fc280b3fc9b4f16d4bb3eef300df5d5158e26b0.tar.bz2
Add maps implementation (based on a patch supplied by Mohamad
Chaarawi). Add h5dsm_map.c example. Other minor fixes/cleanup.
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5.c b/src/H5.c
index a4b55f6..2bd2a60 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -27,6 +27,7 @@
#include "H5Eprivate.h" /* Error handling */
#include "H5FLprivate.h" /* Free lists */
#include "H5Lprivate.h" /* Links */
+#include "H5Mprivate.h" /* Maps */
#include "H5MMprivate.h" /* Memory management */
#include "H5Pprivate.h" /* Property lists */
#include "H5SLprivate.h" /* Skip lists */
@@ -305,6 +306,7 @@ H5_term_library(void)
pending += DOWN(A_top);
pending += DOWN(D_top);
pending += DOWN(G_top);
+ pending += DOWN(M_top);
pending += DOWN(R_top);
pending += DOWN(S_top);
pending += DOWN(T_top);
@@ -330,6 +332,7 @@ H5_term_library(void)
pending += DOWN(A);
pending += DOWN(D);
pending += DOWN(G);
+ pending += DOWN(M);
pending += DOWN(R);
pending += DOWN(S);
pending += DOWN(T);