summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-05-05 19:18:32 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-05-05 19:18:32 (GMT)
commitb60f90da91886edc2afaaca9bf1587d7591051e1 (patch)
tree9f0c5f09e65af4c1b45e3e0577c2310df8242b7b /src/H5.c
parentb05a1c671317403994e4bff5564563f41d348eea (diff)
downloadhdf5-b60f90da91886edc2afaaca9bf1587d7591051e1.zip
hdf5-b60f90da91886edc2afaaca9bf1587d7591051e1.tar.gz
hdf5-b60f90da91886edc2afaaca9bf1587d7591051e1.tar.bz2
[svn-r18711] Description:
More changes to move metadata journaling code closer to trunk: - Retire old (H5AC1) cache code & tests - Remove 'clear_dirty_bits' callback from client class struct - Eliminate 'addr' & 'len' parameters from 'free_icr' client callbacks Tested on: Mac OS X/32 10.6.3 (amazon) debug & production Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5.c b/src/H5.c
index 3ce0b2e..795e30e 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -22,7 +22,6 @@
/* Headers */
/***********/
#include "H5private.h" /* Generic Functions */
-#include "H5AC1private.h" /* Metadata cache */
#include "H5Dprivate.h" /* Datasets */
#include "H5Eprivate.h" /* Error handling */
#include "H5FLprivate.h" /* Free lists */
@@ -173,8 +172,6 @@ H5_init_library(void)
HGOTO_ERROR(H5E_FUNC, H5E_CANTINIT, FAIL, "unable to initialize datatype interface")
if(H5D_init() < 0)
HGOTO_ERROR(H5E_FUNC, H5E_CANTINIT, FAIL, "unable to initialize dataset interface")
- if(H5AC1_init() < 0)
- HGOTO_ERROR(H5E_FUNC, H5E_CANTINIT, FAIL, "unable to initialize metadata caching interface")
if(H5AC_init() < 0)
HGOTO_ERROR(H5E_FUNC, H5E_CANTINIT, FAIL, "unable to initialize metadata caching interface")
if(H5L_init() < 0)
@@ -263,7 +260,6 @@ H5_term_library(void)
* that depend on them. -QAK
*/
if(pending == 0) {
- pending += DOWN(AC1);
pending += DOWN(AC);
pending += DOWN(Z);
pending += DOWN(FD);