diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-27 16:45:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-27 16:45:21 (GMT) |
commit | 8e94745298c2ceacf80b21f0d16e887217527916 (patch) | |
tree | ddd75b1badbe9053c60e214673feffa382f4a4f4 /testpar/t_cache.c | |
parent | 58a95d0d4a593157bb7e77f71347ee50783a11a0 (diff) | |
download | hdf5-8e94745298c2ceacf80b21f0d16e887217527916.zip hdf5-8e94745298c2ceacf80b21f0d16e887217527916.tar.gz hdf5-8e94745298c2ceacf80b21f0d16e887217527916.tar.bz2 |
[svn-r27293] Description:
Split parallel metadata cache code into separate source code modules.
Tested on:
MacOSX/64 10.10.3 (amazon) w/serial & parallel
(too minor for h5committest)
Diffstat (limited to 'testpar/t_cache.c')
-rw-r--r-- | testpar/t_cache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testpar/t_cache.c b/testpar/t_cache.c index 18140ad..0988206 100644 --- a/testpar/t_cache.c +++ b/testpar/t_cache.c @@ -4248,7 +4248,7 @@ setup_cache_for_test(hid_t * fid_ptr, if ( success ) { - if ( H5AC_set_write_done_callback(cache_ptr, do_sync) != SUCCEED ) { + if ( H5AC__set_write_done_callback(cache_ptr, do_sync) != SUCCEED ) { nerrors++; if ( verbose ) { @@ -4263,12 +4263,12 @@ setup_cache_for_test(hid_t * fid_ptr, if ( success ) { - if ( H5AC_set_sync_point_done_callback(cache_ptr, verify_writes) != SUCCEED ) { + if ( H5AC__set_sync_point_done_callback(cache_ptr, verify_writes) != SUCCEED ) { nerrors++; if ( verbose ) { HDfprintf(stdout, - "%d:%s: H5AC_set_sync_point_done_callback failed.\n", + "%d:%s: H5AC__set_sync_point_done_callback failed.\n", world_mpi_rank, FUNC); } } |