summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5C2public.h3
-rw-r--r--src/H5Ppublic.h1
-rw-r--r--src/hdf5.h1
3 files changed, 2 insertions, 3 deletions
diff --git a/src/H5C2public.h b/src/H5C2public.h
index 150e05c..d293ccb 100644
--- a/src/H5C2public.h
+++ b/src/H5C2public.h
@@ -30,7 +30,6 @@
/* Public headers needed by this file */
#include "H5public.h"
-#include "H5Fpublic.h" /*for H5Pset_journal */
#ifdef __cplusplus
extern "C" {
@@ -57,8 +56,6 @@ enum H5C2_cache_decr_mode
H5C2_decr__age_out_with_threshold
};
-H5_DLL herr_t H5Pset_journal(hid_t fapl_id, const char *journal_file);
-
#ifdef __cplusplus
}
#endif
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index f1e98af..214aaec 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -267,6 +267,7 @@ H5_DLL herr_t H5Pset_small_data_block_size(hid_t fapl_id, hsize_t size);
H5_DLL herr_t H5Pget_small_data_block_size(hid_t fapl_id, hsize_t *size/*out*/);
H5_DLL herr_t H5Pset_latest_format(hid_t plist_id, hbool_t latest);
H5_DLL herr_t H5Pget_latest_format(hid_t plist_id, hbool_t *latest);
+H5_DLL herr_t H5Pset_journal(hid_t fapl_id, const char *journal_file);
/* Dataset creation property list (DCPL) routines */
H5_DLL herr_t H5Pset_layout(hid_t plist_id, H5D_layout_t layout);
diff --git a/src/hdf5.h b/src/hdf5.h
index ef15063..a1f1880 100644
--- a/src/hdf5.h
+++ b/src/hdf5.h
@@ -24,6 +24,7 @@
#include "H5public.h"
#include "H5Apublic.h" /* Attributes */
#include "H5ACpublic.h" /* Metadata cache */
+#include "H5AC2public.h" /* New Metadata cache */
#include "H5Dpublic.h" /* Datasets */
#include "H5Epublic.h" /* Errors */
#include "H5Fpublic.h" /* Files */