summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-07-21 22:21:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-07-21 22:21:06 (GMT)
commit009da0a6ebb6251fae94a0d76bd1b07a9958b1d2 (patch)
treed4638473cc7c29f0b54cd663f127e2a25f504f7c /src/H5AC.c
parentaf2b1cf00cf48d682e21a3d47349ed009b4102a7 (diff)
downloadhdf5-009da0a6ebb6251fae94a0d76bd1b07a9958b1d2.zip
hdf5-009da0a6ebb6251fae94a0d76bd1b07a9958b1d2.tar.gz
hdf5-009da0a6ebb6251fae94a0d76bd1b07a9958b1d2.tar.bz2
[svn-r5819] Purpose:
Bug Fix Description: non-parallel case for new metadata cache flushing property wasn't set up correctly. Solution: Initialize variables correctly. Platforms tested: FreeBSD 4.6 (sleipnir)
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index 80bf603..7b81c8a 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -51,10 +51,8 @@ static int interface_initialize_g = 0;
#define INTERFACE_INIT H5AC_init_interface
static herr_t H5AC_init_interface(void);
-#ifdef H5_HAVE_PARALLEL
/* Dataset transfer property list for flush calls */
static hid_t H5AC_dxpl_id=(-1);
-#endif /* H5_HAVE_PARALLEL */
#ifdef H5AC_SORT_BY_ADDR
static H5AC_t *current_cache_g = NULL; /*for sorting */
@@ -92,15 +90,14 @@ H5FL_ARR_DEFINE_STATIC(H5AC_prot_t,-1);
static herr_t
H5AC_init_interface(void)
{
-#ifdef H5_HAVE_PARALLEL
H5P_genclass_t *xfer_pclass; /* Dataset transfer property list class object */
+#ifdef H5_HAVE_PARALLEL
H5P_genplist_t *xfer_plist; /* Dataset transfer property list object */
unsigned block_before_meta_write=1; /* Custom value for "block before meta write" property */
#endif /* H5_HAVE_PARALLEL */
FUNC_ENTER_NOINIT(H5AC_init_interface);
-#ifdef H5_HAVE_PARALLEL
/* Sanity check */
assert(H5P_CLS_DATASET_XFER_g!=(-1));
@@ -112,6 +109,7 @@ H5AC_init_interface(void)
if ((H5AC_dxpl_id=H5P_create_id(xfer_pclass)) < 0)
HRETURN_ERROR(H5E_CACHE, H5E_CANTCREATE, FAIL, "unable to register property list");
+#ifdef H5_HAVE_PARALLEL
/* Get the property list object */
if (NULL == (xfer_plist = H5I_object(H5AC_dxpl_id)))
HRETURN_ERROR(H5E_CACHE, H5E_BADATOM, FAIL, "can't get new property list object");
@@ -150,7 +148,6 @@ H5AC_term_interface(void)
FUNC_ENTER_NOINIT(H5AC_term_interface);
if (interface_initialize_g) {
-#ifdef H5_HAVE_PARALLEL
if(H5AC_dxpl_id>0) {
/* Indicate more work to do */
n = 1; /* H5I */
@@ -167,7 +164,6 @@ H5AC_term_interface(void)
} /* end else */
} /* end if */
else
-#endif /* H5_HAVE_PARALLEL */
/* Reset interface initialization flag */
interface_initialize_g = 0;
} /* end if */