summaryrefslogtreecommitdiffstats
path: root/src/H5C2private.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-01-26 15:12:08 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-01-26 15:12:08 (GMT)
commit855dd92b0e72771df86ec81f5334ffd2add1bfb7 (patch)
treef7eccab42b013c0fa980c82334b4ba7d6733db8f /src/H5C2private.h
parent65c5e3925d10424b15476112ccac1d0704630316 (diff)
downloadhdf5-855dd92b0e72771df86ec81f5334ffd2add1bfb7.zip
hdf5-855dd92b0e72771df86ec81f5334ffd2add1bfb7.tar.gz
hdf5-855dd92b0e72771df86ec81f5334ffd2add1bfb7.tar.bz2
[svn-r18168] Description:
Code cleanups for better alignment with trunk, along with style issues, etc. Also, get journal test files to work correctly when using a srcdir build. Tested on: Mac OS X/32 10.6.2 (amazon) w/debug, production & parallel (h5committest not required on this branch)
Diffstat (limited to 'src/H5C2private.h')
-rw-r--r--src/H5C2private.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5C2private.h b/src/H5C2private.h
index 8c9075c..f7aec7e 100644
--- a/src/H5C2private.h
+++ b/src/H5C2private.h
@@ -1440,7 +1440,7 @@ H5_DLL herr_t H5C2_flush_cache(H5F_t *f, hid_t dxpl_id, unsigned flags);
H5_DLL herr_t H5C2_flush_to_min_clean(H5F_t * f,
hid_t dxpl_id);
-H5_DLL herr_t H5C2_get_cache_auto_resize_config(H5C2_t * cache_ptr,
+H5_DLL herr_t H5C2_get_cache_auto_resize_config(const H5C2_t * cache_ptr,
H5C2_auto_size_ctl_t *config_ptr);
H5_DLL herr_t H5C2_get_cache_size(H5C2_t * cache_ptr,
@@ -1452,7 +1452,7 @@ H5_DLL herr_t H5C2_get_cache_size(H5C2_t * cache_ptr,
H5_DLL herr_t H5C2_get_cache_hit_rate(H5C2_t * cache_ptr,
double * hit_rate_ptr);
-H5_DLL herr_t H5C2_get_entry_status(H5F_t * f,
+H5_DLL herr_t H5C2_get_entry_status(const H5F_t * f,
haddr_t addr,
size_t * size_ptr,
hbool_t * in_cache_ptr,
@@ -1460,13 +1460,13 @@ H5_DLL herr_t H5C2_get_entry_status(H5F_t * f,
hbool_t * is_protected_ptr,
hbool_t * is_pinned_ptr);
-H5_DLL herr_t H5C2_get_evictions_enabled(H5C2_t * cache_ptr,
+H5_DLL herr_t H5C2_get_evictions_enabled(const H5C2_t * cache_ptr,
hbool_t * evictions_enabled_ptr);
-H5_DLL herr_t H5C2_get_trace_file_ptr(const H5C2_t * cache_ptr,
- FILE ** trace_file_ptr_ptr);
+H5_DLL herr_t H5C2_get_trace_file_ptr(const H5C2_t *cache_ptr,
+ FILE **trace_file_ptr_ptr);
H5_DLL herr_t H5C2_get_trace_file_ptr_from_entry(const H5C2_cache_entry_t *entry_ptr,
- FILE ** trace_file_ptr_ptr);
+ FILE ** trace_file_ptr_ptr);
H5_DLL herr_t H5C2_insert_entry(H5F_t * f,
hid_t dxpl_id,
@@ -1507,10 +1507,10 @@ H5_DLL herr_t H5C2_reset_cache_hit_rate_stats(H5C2_t * cache_ptr);
H5_DLL herr_t H5C2_resize_pinned_entry(void * thing,
size_t new_size);
-H5_DLL herr_t H5C2_set_cache_auto_resize_config(const H5F_t * f,
+H5_DLL herr_t H5C2_set_cache_auto_resize_config(H5C2_t * cache_ptr,
H5C2_auto_size_ctl_t *config_ptr);
-H5_DLL herr_t H5C2_set_evictions_enabled(const H5F_t * f,
+H5_DLL herr_t H5C2_set_evictions_enabled(H5C2_t * cache_ptr,
hbool_t evictions_enabled);
H5_DLL herr_t H5C2_set_prefix(H5C2_t * cache_ptr, char * prefix);