diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-04-12 21:41:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-04-12 21:41:23 (GMT) |
commit | 6151c1cd90aff639f66de06ec419cf49e49581de (patch) | |
tree | 2b744bdd17dc108d4bc212238c1df580796c88c4 /testpar/t_pflush2.c | |
parent | c8f12172f17ee14b024e5367c57fad83183d7ed5 (diff) | |
download | hdf5-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/t_pflush2.c')
-rw-r--r-- | testpar/t_pflush2.c | 8 |
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); |