summaryrefslogtreecommitdiffstats
path: root/src/H5FSpkg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FSpkg.h')
-rw-r--r--src/H5FSpkg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5FSpkg.h b/src/H5FSpkg.h
index 2ed1996..ece1964 100644
--- a/src/H5FSpkg.h
+++ b/src/H5FSpkg.h
@@ -35,7 +35,7 @@
#include "H5FSprivate.h" /* File free space */
/* Other private headers needed by this file */
-#include "H5AC2private.h" /* Metadata cache */
+#include "H5ACprivate.h" /* Metadata cache */
#include "H5SLprivate.h" /* Skip lists */
/**************************/
@@ -133,7 +133,7 @@ typedef struct H5FS_node_t {
/* Information about sections managed */
typedef struct H5FS_sinfo_t {
/* Information for H5AC cache functions, _must_ be first field in structure */
- H5AC2_info_t cache_info;
+ H5AC_info_t cache_info;
/* Stored information */
H5FS_bin_t *bins; /* Array of lists of lists of free sections */
@@ -156,7 +156,7 @@ typedef struct H5FS_sinfo_t {
/* Main free space info */
struct H5FS_t {
/* Information for H5AC cache functions, _must_ be first field in structure */
- H5AC2_info_t cache_info;
+ H5AC_info_t cache_info;
/* Stored information */
/* Statistics about sections managed */
@@ -192,10 +192,10 @@ struct H5FS_t {
/*****************************/
/* H5FS header inherits cache-like properties from H5AC */
-H5_DLLVAR const H5AC2_class_t H5AC2_FSPACE_HDR[1];
+H5_DLLVAR const H5AC_class_t H5AC_FSPACE_HDR[1];
/* H5FS section info inherits cache-like properties from H5AC */
-H5_DLLVAR const H5AC2_class_t H5AC2_FSPACE_SINFO[1];
+H5_DLLVAR const H5AC_class_t H5AC_FSPACE_SINFO[1];
/* Declare a free list to manage the H5FS_node_t struct */
H5FL_EXTERN(H5FS_node_t);