summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-04-12 21:41:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-04-12 21:41:23 (GMT)
commit6151c1cd90aff639f66de06ec419cf49e49581de (patch)
tree2b744bdd17dc108d4bc212238c1df580796c88c4 /testpar
parentc8f12172f17ee14b024e5367c57fad83183d7ed5 (diff)
downloadhdf5-6151c1cd90aff639f66de06ec419cf49e49581de.zip
hdf5-6151c1cd90aff639f66de06ec419cf49e49581de.tar.gz
hdf5-6151c1cd90aff639f66de06ec419cf49e49581de.tar.bz2
[svn-r13650] Description:
Clean up problems from error handling API changes in parallel and threadsafe builds. Tested on: FreeBSD/64 6.2 (liberty) w/parallel & threadsafe
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_pflush2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testpar/t_pflush2.c b/testpar/t_pflush2.c
index 6500a27..5c3326b 100644
--- a/testpar/t_pflush2.c
+++ b/testpar/t_pflush2.c
@@ -132,7 +132,7 @@ int
main(int argc, char* argv[])
{
hid_t fapl1, fapl2;
- H5E_auto_stack_t func;
+ H5E_auto2_t func;
char name[1024];
const char *envval = NULL;
@@ -176,8 +176,8 @@ main(int argc, char* argv[])
* so we turn off the error stack temporarily */
if(mpi_rank == 0)
TESTING("H5Fflush (part2 without flush)");
- H5Eget_auto_stack(H5E_DEFAULT,&func,NULL);
- H5Eset_auto_stack(H5E_DEFAULT, NULL, NULL);
+ H5Eget_auto2(H5E_DEFAULT,&func,NULL);
+ H5Eset_auto2(H5E_DEFAULT, NULL, NULL);
h5_fixname(FILENAME[1], fapl2, name, sizeof name);
if(check_file(name, fapl2))
@@ -192,7 +192,7 @@ main(int argc, char* argv[])
H5_FAILED()
goto error;
}
- H5Eset_auto_stack(H5E_DEFAULT, func, NULL);
+ H5Eset_auto2(H5E_DEFAULT, func, NULL);
h5_cleanup(&FILENAME[0], fapl1);