diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2004-07-20 21:17:59 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2004-07-20 21:17:59 (GMT) |
commit | a86779f3f79905ce923d4689c1fb614969370031 (patch) | |
tree | 8800cf4d47c2db83d00e41ecf64e59a0da0d5e11 /src/H5Cprivate.h | |
parent | 4cb6c01d7f59be968649e36a61346be044f76345 (diff) | |
download | hdf5-a86779f3f79905ce923d4689c1fb614969370031.zip hdf5-a86779f3f79905ce923d4689c1fb614969370031.tar.gz hdf5-a86779f3f79905ce923d4689c1fb614969370031.tar.bz2 |
[svn-r8905] Purpose:
bug fix for windows testing
Description:
A function called H5C_stats_reset doesn't have H5_DLL in front of it,
it cause windows DLL test failed.
Solution:
Add H5_DLL in front of it.
Platforms tested:
windows xp, sol 2.7, linux 2.4, aix 5.1
Misc. update:
Diffstat (limited to 'src/H5Cprivate.h')
-rw-r--r-- | src/H5Cprivate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Cprivate.h b/src/H5Cprivate.h index 98bf009..aad57f7 100644 --- a/src/H5Cprivate.h +++ b/src/H5Cprivate.h @@ -364,7 +364,8 @@ H5_DLL herr_t H5C_stats(H5C_t * cache_ptr, const char * cache_name, hbool_t display_detailed_stats); -void H5C_stats__reset(H5C_t * cache_ptr); +H5_DLL void H5C_stats__reset(H5C_t * cache_ptr); + H5_DLL herr_t H5C_set_skip_flags(H5C_t * cache_ptr, hbool_t skip_file_checks, |